How to send large amount of websql (localdata) data to server. when i'm using jsonp the data is attached to url so the url not connect to the server. So there is any POST method to send data server
JsonP uses a <script> element to load cross domain which will only use GET. To do a POST cross domain, the server needs to support CORS which is just returning a couple extra headers: http://enable-cors.org