About 12,000,000 results
Open links in new tab
  1. How to pass parameters in $ajax POST? - Stack Overflow

    Sep 9, 2013 · The Jquery.ajax documentation says that there is a flag called processData that controls whether this encoding is done automatically or not. The documentation says that it …

  2. Download a file asynchronously using Ajax - Stack Overflow

    I created jQuery File Download which allows for an "Ajax like" experience with file downloads complete with OnSuccess and OnFailure callbacks to provide for a better user experience.

  3. include antiforgerytoken in ajax post ASP.NET MVC

    I am having trouble with the AntiForgeryToken with ajax. I'm using ASP.NET MVC 3. I tried the solution in jQuery Ajax calls and the Html.AntiForgeryToken(). Using that solution, the token is …

  4. Show loading image while $.ajax is performed - Stack Overflow

    The "image" people generally show during an ajax call is an animated gif. Since there is no way to determine the percent complete of the ajax request, the animated gifs used are indeterminate …

  5. Send JSON data via POST (ajax) and receive json response from ...

    Dec 15, 2011 · Send JSON data via POST (ajax) and receive json response from Controller (MVC) Asked 13 years, 10 months ago Modified 3 years, 2 months ago Viewed 1.1m times

  6. jQuery: Return data after ajax call success [duplicate]

    Mar 16, 2011 · The only way to return the data from the function would be to make a synchronous call instead of an asynchronous call, but that would freeze up the browser while it's waiting for …

  7. How to send FormData objects with Ajax-requests in jQuery?

    The XMLHttpRequest Level 2 standard (still a working draft) defines the FormData interface. This interface enables appending File objects to XHR-requests (Ajax-requests). Btw, this is a new …

  8. How do you handle errors from AJAX calls? - Stack Overflow

    Jul 6, 2016 · You'll need to complete a few actions and gain 15 reputation points before being able to upvote. Upvoting indicates when questions and answers are useful. What's reputation …

  9. TypeError: $.ajax (...) is not a function? - Stack Overflow

    The problem is this one by default is slim.jquery.js which doesn't have the ajax function in it. So, if you're using (copy-pasted from Bootstrap website) slim version jquery script link, use the full …

  10. jQuery Ajax Request inside Ajax Request - Stack Overflow

    Apr 10, 2012 · Is it possible to make an ajax request inside another ajax request? because I need some data from first ajax request to make the next ajax request. First I'm using Google Maps …