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.

When is the @JsonProperty property used and what is it used for?

This bean 'State' : public class State { private boolean isSet; @JsonProperty("isSet") public boolean isSet() { return isSet; } @JsonProperty("isSet") public void …

java ajax jackson
How can I post data as form data instead of a request payload?

In the code below, the AngularJS $http method calls the URL, and submits the xsrf object as a "Request Payload" (…

ajax angularjs post angular-http
How do I catch an Ajax query post error?

I would like to catch the error and show the appropriate message if the Ajax request fails. My code is …

jquery ajax post error-handling
Jquery - How to make $.post() use contentType=application/json?

I've noticed that when using $.post() in jquery that the default contentType is application/x-www-form-urlencoded - when my asp.net …

jquery ajax content-type
On - window.location.hash - Change?

I am using Ajax and hash for navigation. Is there a way to check if the window.location.hash changed …

javascript ajax dom-events fragment-identifier hashchange
jQuery load more data on scroll

I am just wondering how can i implement more data on scroll only if the div.loading is visible. Usually …

javascript jquery ajax scroll
How to access JSON Object name/value?

function (data) { //add values based on activity type //data = JSON.parse(data); //alert(abc.Phone1); alert(data.myName) alert(data.…

jquery ajax json asp.net-mvc-3
How to automatically reload a page after a given period of inactivity

How can I automatically reload a webpage, if there have been no activity on the page for a given period …

javascript ajax
using jquery $.ajax to call a PHP function

This may be a simple answer, but I'm using jQuery's $.ajax to call a PHP script. What I want to …

php jquery ajax
How do I make jQuery wait for an Ajax call to finish before it returns?

I have a server side function that requires login. If the user is logged in the function will return 1 on …

jquery ajax