About 22,000,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 how does it work?

  2. How to pass parameters in $ajax POST? - Stack Overflow

    Sep 9, 2013 · 70 Jquery.ajax does not encode POST data for you automatically the way that it does for GET data. Jquery expects your data to be pre-formated to append to the request body to be sent …

  3. jQuery Ajax simple call - Stack Overflow

    21 You could also make the ajax call more generic, reusable, so you can call it from different CRUD (create, read, update, delete) tasks for example and treat the success cases from those calls.

  4. 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. Take a look at my …

  5. ajax - How to manually send HTTP POST requests from Firefox or …

    Make an AJAX call in the Chrome console. No extension needed. This is a good way to make POST requests without the need to grab authentication cookies. $.post('/resource/path/')

  6. 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 now be...

  7. Making a Simple Ajax call to controller in asp.net mvc

    Apr 24, 2013 · Learn how to make a simple Ajax call to an ASP.NET MVC controller with step-by-step guidance and code examples.

  8. ajax - What does it mean when an HTTP request returns status code 0 ...

    May 16, 2009 · For what it is worth, depending on the browser, jQuery-based AJAX calls will call your success callback with a HTTP status code of 0. We've found a status code of "0" usually means the …

  9. javascript - How to await the ajax request? - Stack Overflow

    Dec 23, 2014 · I use AJAX to query the DB for the given number and to determine if the should send the data to a .php site which will upload the question. To determine this I need the numOfRows variable's …

  10. Difference between fetch, ajax, and xhr - Stack Overflow

    Mar 17, 2022 · Ajax is a buzzword meaning "Making an HTTP request from JavaScript without leaving the page". XMLHttpRequest and fetch are APIs, provided by browsers, which allow HTTP requests …