1.

How To Use Ajax In Jquery?

Answer»

Jquery supports AJAX calls, below is the code snippet of AJAX in Jquery –

$.ajax({

URL: ‘MyURL',

SUCCESS: function(RESPONSE) {

//My Code goes here

},

ERROR: function(err) {

//My Code goes here }

});

Jquery supports AJAX calls, below is the code snippet of AJAX in Jquery –

$.ajax({

url: ‘MyURL',

success: function(response) {

//My Code goes here

},

error: function(err) {

//My Code goes here }

});



Discussion

No Comment Found