About 12,400,000 results
Open links in new tab
  1. javascript - 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. javascript - How does AJAX work? - Stack Overflow

    Oct 2, 2009 · Ajax, which consists of HTML, JavaScript™ technology, DHTML, and DOM, is an outstanding approach that helps you transform clunky Web interfaces into interactive Ajax applications.

  3. Difference between ajax and javascript - Stack Overflow

    May 11, 2014 · AJAX (Asynchronous javascript and XML) is the javascript implementation of partial server requests which is typically carried out using the XMLHttpRequest object.

  4. javascript - jQuery: Return data after ajax call success - Stack Overflow

    Mar 16, 2011 · For differences between jQuery and other implementations, and how to convert jQuery promises to Promises/A+ compliant, see Coming from jQuery by Kris Kowal et al. on the Q library …

  5. 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 spinners.

  6. How can I make an AJAX call without jQuery? - Stack Overflow

    How can I make an AJAX call using JavaScript, without using jQuery?

  7. javascript - jQuery Ajax File Upload - Stack Overflow

    269 Ajax post and upload file is possible. I'm using jQuery $.ajax function to load my files. I tried to use the XHR object but could not get results on the server side with PHP.

  8. javascript - jQuery Ajax POST example with PHP - Stack Overflow

    Feb 15, 2011 · This Stack Overflow page provides an example of how to use jQuery Ajax POST with PHP.

  9. Download a file asynchronously using Ajax - Stack Overflow

    Bluish is completely right about this, you can't do it through Ajax because JavaScript cannot save files directly to a user's computer (out of security concerns). Unfortunately pointing the main window's …

  10. javascript - How can I get jQuery to perform a synchronous, rather than ...

    Sep 25, 2008 · One is telling Ajax to perform synchronously (by setting async: false) and the other is returning the response via the calling function's return statement, rather than into a callback function. …