Is there any advantage of using $.ajax() for ajax call against $.get() or $.post()?
Answer / 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 |
What is normally not included in a cloned copy? : jQuery Mobile
Can you write a code to select all links inside the paragraph?
Can you please explain the difference between prop and attr? : jquery mobile
How to fetch the values of selected checkbox array using jquery?
How to set jquery mobile responsive table width to 100% width despite css styles? : jquery mobile
What are the different types of selectors in jquery?
What is serialize() in jquery?
What is difference between .setinterval() and .delay() ?
Define animate function in jquery?
What are various methods to make ajax request in jQuery?
How to check data type of any variable in jquery? : jquery mobile
Create a plugin that would add and remove a class on hover.