Skip to content

Instantly share code, notes, and snippets.

@jswhisperer
Created June 23, 2013 14:19
Show Gist options
  • Select an option

  • Save jswhisperer/5845172 to your computer and use it in GitHub Desktop.

Select an option

Save jswhisperer/5845172 to your computer and use it in GitHub Desktop.
getScript Ajax
// $.getScript()
var scriptUrl = "ajax/script.php";
$("#getScript").click(function(){
$("#result").html(ajax_load);
$.getScript(scriptUrl, function(){
$("#result").html("");
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment