Is there any advantage of using $.ajax() for ajax call against $.get() or $.post()?
Answer Posted / chaitanya
By using jQuery post()/ jQuery get(), you always trust the response from the server and you believe it is going to be successful all the time. Well, it is certainly not a good idea to trust the response. As there can be n number of reason which may lead to failure of response.
Where jQuery.ajax() is jQuery's low-level AJAX implementation. $.get and $.post are higher-level abstractions that are often easier to understand and use, but don't offer as much functionality (such as error callbacks). Find out more here.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Which is the fastest selector in jQuery?
What is the difference between the knockout and jquery?
What is the use of delay() method in JQuery?
What is a cdn? : jQuery Mobile
What were the biggest challenges of getting the jQuery 1.7 release ?
How To Use Ajax In Jquery?
What is the difference between jquery-x.x.x.js and jquery.x.x.x min.js?
Differentiate the concepts of .js and .min.js?
Explain the types of selectors in jquery?
What is the difference between prop() and attr() in jquery?
What is the difference between jquery.get() and jquery.ajax()?
What are some of the ways to provide effects? : jQuery Mobile
What is .remove()? : jquery mobile
How do you disable or enable a form element?
How to programmatically trigger a click event thats being handled by jquery only?