About 11,200,000 results
Open links in new tab
  1. What is AJAX and how does it work? - Stack Overflow

    May 15, 2011 · Possible Duplicate: How does AJAX work? Note: This is a community wiki post I've often heard of AJAX being used for providing a user with dynamic content. What is it and …

  2. javascript - jQuery AJAX submit form - Stack Overflow

    Dec 25, 2009 · I have a form with name orderproductForm and an undefined number of inputs. I want to do some kind of jQuery.get or ajax or anything like that that would call a page through …

  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. 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 …

  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. 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 …

  7. jquery - Pass array to ajax request in $.ajax () - Stack Overflow

    Jan 17, 2012 · Pass array to ajax request in $.ajax () [duplicate] Asked 13 years, 9 months ago Modified 5 years, 8 months ago Viewed 788k times

  8. javascript - How does AJAX work? - Stack Overflow

    Oct 2, 2009 · The author, an Ajax expert, demonstrates how these technologies work together -- from an overview to a detailed look -- to make extremely efficient Web development an easy …

  9. 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 …

  10. What does "async: false" do in jQuery.ajax ()? - Stack Overflow

    Specifically, how does it differ from the default ( async: true ) ? In what circumstances would I want to explicit set async to false, and does it have something to do with preventing other event...