Saved Bookmarks
| 1. |
How To Use Ajax In Jquery? |
|
Answer» Jquery supports AJAX calls, below is the code snippet of AJAX in Jquery – $.ajax({ URL: ‘MyURL', //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 } }); |
|