About 3,550,000 results
Open links in new tab
  1. jquery - 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 …

  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. ajax - How do I get the HTTP status code with jQuery? - Stack …

    1 I have had major issues with ajax + jQuery v3 getting both the response status code and data from JSON APIs. jQuery.ajax only decodes JSON data if the status is a successful one, and it …

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

    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 …

  5. What is the difference between XMLHttpRequest, jQuery.ajax, …

    Jan 11, 2011 · The fundamental difference between jQuery.ajax and XMLHttpRequest is that jQuery.ajax uses XMLHttpRequest to achieve the same effect but with a simpler interface.

  6. jQuery Ajax error handling, show custom exception messages

    The function receives three arguments: The jqXHR (in jQuery 1.4.x, XMLHttpRequest) object, a string describing the type of error that occurred and an optional exception object, if one occurred.

  7. Use basic authentication with jQuery and Ajax - Stack Overflow

    Use basic authentication with jQuery and Ajax Asked 14 years, 8 months ago Modified 4 years, 10 months ago Viewed 882k times

  8. How to make JQuery-AJAX request synchronous - Stack Overflow

    Dec 20, 2012 · How do i make an ajax request synchronous? I have a form which needs to be submitted. But it needs to be submitted only when the user enters the correct password. Here …

  9. jquery - Ajax tutorial for post and get - Stack Overflow

    I need a simple ajax tutorial or case study for a simple input form, where I want to post a username through an input form, which sends it to the database and replies with the results. …

  10. Post an object as data using Jquery Ajax - Stack Overflow

    Jul 1, 2009 · 2 You may pass an object to the data option in $.ajax. jQuery will send this as regular post data, just like a normal HTML form.