JQuery Ajax in Chrome sends GET instead of POST, but in Edge it sends correctly
The following code triggers a GET Method instead of POST. $.ajax({type: 'POST',url: 'http://localhost:8000/DoAsync',data: {i:e},dataType: 'script' }); It's happened in Chrome. But, while I use the same code in Edge, it triggers correctly. Don't know how to resolve it in Chrome?…