How to use type: “POST” in jsonp ajax call

You can’t POST using JSONP…it simply doesn’t work that way, it creates a <script> element to fetch data…which has to be a GET request. There’s not much you can do besides posting to your own domain as a proxy which posts to the other…but user’s not going to be able to do this directly and see a response though.

Leave a Comment