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
Is jquery a framework?
How we can set the html contents of an element in jquery?
Why content injected into a page is not enhanced? : jquery mobile
How to control page titles in jquery mobile? : jquery mobile
What happen if you return false from a jQuery event handler?
How to check if number is numeric while using jquery 1.7+? : jquery mobile
What are all the ways to include jQuery in a page?
Can you write a jquery code to select all links inside the paragraph?
What is jquery.holdready() function?
What is $() in jquery library?
Why we need jquery mobile? : jquery mobile
Difference between event.PreventDefault and event.stopPropagation?
How to use css() in jquery?
What is $() in jquery?
What are your tools of choice to get the jquery job done?