Skip to content

Instantly share code, notes, and snippets.

@linusthe3rd
Created November 13, 2010 02:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save linusthe3rd/675022 to your computer and use it in GitHub Desktop.
Save linusthe3rd/675022 to your computer and use it in GitHub Desktop.
$.get( "yourServerPage.php", {
'data[]': inputArray
}, function( outputData ){
$("#outputDiv")
.empty()
.append( outputData );
});
$("#outputDiv").load( "yourServerPage.php", {
'data[]': inputArray
}, function( outputData ){
//do stuff
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment