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
How to include jquery library in asp.net project?
Need to add jQuery file in both Master and Content page?
What is event.stoppropagation? : jquery mobile
How you get server response from an ajax request using jquery?
How to set jquery mobile responsive table width to 100% width despite css styles? : jquery mobile
Why jquery?
Is it possible to use jquery to make ajax request? : jquery mobile
Explain the use of each function in jquery?
What are the the two types of cdns?
Explain the types of selectors in jquery?
What is the difference between size and length of jQuery?
How to get/set the html contents of an element using jQuery?
What is the use of delegate() method in jquery?
How can we add change font size using jquery?
What are the basic selectors in jQuery?