Top "Ajax" questions

AJAX (Asynchronous JavaScript and XML) is a technique for creating interactive website user interfaces without the traditional web page refresh or reload.

How to send multiple data fields via Ajax?

I'm stuck: I'm trying to submit a form using AJAX, but I can't find a way to send multiple data …

jquery sql ajax
How to generate a simple popup using jQuery

I am designing a web page. When we click the content of div named mail, how can I show a …

javascript jquery css ajax popup
How to get a cross-origin resource sharing (CORS) post request working

I have a machine on my local lan (machineA) that has two web servers. The first is the in-built one …

jquery ajax cherrypy cors
How to Convert JSON object to Custom C# object?

Is there an easy way to populate my C# Object with the JSON object passed via AJAX? This is the …

c# asp.net .net ajax json
Pass array to ajax request in $.ajax()

I want to send an array as an Ajax request: info[0] = 'hi'; info[1] = 'hello'; $.ajax({ type: "POST", url: "index.php", …

jquery ajax arrays json
Ways to circumvent the same-origin policy

The same origin policy I wanted to make a community wiki regarding HTML/JS same-origin policies to hopefully help anyone …

javascript ajax same-origin-policy
Abort Ajax requests using jQuery

Is it possible that using jQuery, I cancel/abort an Ajax request that I have not yet received the response …

javascript jquery ajax
How to use FormData for AJAX file upload?

This is my HTML which I'm generating dynamically using drag and drop functionality. <form method="POST" id="contact" name="13" …

php jquery ajax
How to get the jQuery $.ajax error response text?

I am sending an error response to my jQuery. However, I can not get the response text (in the example …

php javascript jquery ajax error-handling
How to pass parameters in GET requests with jQuery

How should I be passing query string values in a jQuery Ajax request? I currently do them as follows but …

javascript jquery ajax get