jQuery and AJAX
November 4, 2015
the difference between jQuery's .load() AJAX method and jQuery's other shorthand AJAX methods?
The .load() method must be chained onto a jQuery selection. For example,
code
$("#element").load("page.html");
.get()
code
$.get(url, data, callback);