jQuery and AJAX

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,

$('#element').load('page.html');

.get()

$.get(url, data, callback);