JavaScript AJAX – How to Get Around the Same Origin Policy

ajaxjavascript

I need to use AJAX to get the content of another page located on a different server from the one the AJAX is loaded from. The AJAX needs to send a POST request then return the result. how can i do this?

Best Answer

Set up proxy on your own server. Have your server call theirs and return the result.

Related Question