MENU
Shorthand Methods
$.get(String url<br> [,Object/String data]<br> [,function(Object data, String status, <br> jqXHR xhr) success]<br> [,String dataType])
RESETRUNFULL
RESETRUNFULL
$.ajax({url: url,
data: data,
dataType: dataType,
success: success});
$.post(String url<br> [,Object/String data]<br> [,function(Object data, String status, <br> jqXHR xhr) success]<br> [,String dataType])
RESETRUNFULL
RESETRUNFULL
$.ajax({url: url,
type: “POST",
data: data,
dataType: dataType,
success: success});
$.getScript(String url <br> [,function(String script, String status, jqXHR xhr) success])
RESETRUNFULL
RESETRUNFULL
$.ajax({url: url,
dataType: “script",
success: success});
$.getJSON(String url<br> [,Object data]<br> [,function (Object data, String status, jqXHR xhr) success])
RESETRUNFULL
RESETRUNFULL
$.ajax({url: url,
data: data,
dataType: “json",
success: success});
$(selector).load(String url [,Object/String data]<br> [,function (String resText, String status, jqXHR xhr) complete])
RESETRUNFULL
RESETRUNFULL
$( "#result" ).load( "ajax/test.html" );
$( "#result" ).load( "ajax/test.html",
function() {
alert( "Load was performed." );});
$( "#result" ).load(
"ajax/test.html #container" );