What do I need to on the server side to allow someone to get data from that server using JSONP. And what do I need to do on the user side as well? I want to use JSONP as an alternative to an XMLHttpRequest.
It won’t work out of my Firefox extension, because of the same-origin policy. So, people recommended JSON, but I am pretty lost after searching for tutorials and guides on the internet.
Thanks for the help!
Assuming your server is running PHP, you just need to add ‘callback’ GET request.
And on client side (using jQuery):
The PHP code above is just for demo, don’t forget to sanitise $_GET[‘callback’]
That said, if your issue just the same origin policy, you’ll probably just need to allow cross-origin from the server side, and everything should work.