What is the difference between jQuery.get() and jQuery.ajax(
What is the difference between jQuery.get() and jQuery.ajax()?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Rajkiran SwainPosted Jul 18, 2017, 5:37 AM
Ankush RathodPosted Jul 25, 2017, 11:02 AM
Essentially, $.get(), $.post(), $.load() are all just wrappers for $.ajax(). Also, .ajax and .get are practically the same thing and have the same result.
jQuery.ajax() performs an asynchronous HTTP (Ajax) request. It gives the user the most control. It is the most configurable one. It provides the user with fine grained control over HTTP headers and such
Sanjit Kumar SinghPosted Jul 18, 2017, 6:30 AM
Vivek KumarPosted Jul 17, 2017, 1:36 AM