I usually use $.get()it $.post()for all my asynchronous calls, but they usually qualify with the last parameter, which is "JSON", which indicates that I expect to process JSON data in my callback.
Is there any benefit of using $.get([url],[data],[callback],"JSON")over $.getJSON([url],[data],[callback])? Is it nothing more than to include the final parameter, an explicit declaration of the return type?
source
share