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.

jQuery ajax error function

I have an ajax call passing data to a page which then returns a value. I have retrieved the successful …

jquery ajax
Handle file download from ajax post

I have a javascript app that sends ajax POST requests to a certain URL. Response might be a JSON string …

javascript jquery ajax
Ajax tutorial for post and get

I need a simple ajax tutorial or case study for a simple input form, where I want to post a …

jquery ajax
POST JSON fails with 415 Unsupported media type, Spring 3 mvc

I am trying to send a POST request to a servlet. Request is sent via jQuery in this way: var …

ajax json spring post http-status-code-415
Getting all selected checkboxes in an array

So I have these checkboxes: <input type="checkbox" name="type" value="4" /> <input type="checkbox" name="type" value="3" /&…

javascript jquery ajax dhtml
No 'Access-Control-Allow-Origin' header is present on the requested resource error

I'm trying to fetch the feed of a news website. Thought I'd use google's feed API to convert the feedburner …

javascript jquery json ajax cors
Submitting HTML form using Jquery AJAX

Im trying to submit a HTML form using AJAX using this example. My HTML code: <form id="formoid" action="…

jquery ajax form-submit
Updating address bar with new URL without hash or reloading the page

I either dreamt about chrome (dev channel) implementing a way to update the address bar via javascript (the path, not …

javascript ajax google-chrome
CORS: Cannot use wildcard in Access-Control-Allow-Origin when credentials flag is true

I have a setup involving Frontend server (Node.js, domain: localhost:3000) <---> Backend (Django, Ajax, domain: localhost:8000) Browser &…

ajax django node.js cors django-cors-headers
How to send a correct authorization header for basic authentication

I am trying to POST data from my API but I can't pass the basic authentication. I try: $.ajax({ type: …

jquery ajax django api cross-domain