Skip to content

Instantly share code, notes, and snippets.

@geilt
Created August 27, 2014 20:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save geilt/817ff32b20414ddd5a16 to your computer and use it in GitHub Desktop.
Save geilt/817ff32b20414ddd5a16 to your computer and use it in GitHub Desktop.
jQuery $.load into Variable.
var url = 'http://www.google.com';
var load = $('<div>');
var content = '';
load.load(url, function(result){
content = load.html();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment