Skip to content

Instantly share code, notes, and snippets.

@ruzz311
Created December 1, 2011 05:16
Show Gist options
  • Save ruzz311/1413886 to your computer and use it in GitHub Desktop.
Save ruzz311/1413886 to your computer and use it in GitHub Desktop.
jQuery example of non-blocking callbacks
$.get('ajax/test.html', function(data) {
$('.result').html(data);
alert('Load was performed.');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment