Skip to content

Instantly share code, notes, and snippets.

@appleton
Created November 4, 2014 15:29
Show Gist options
  • Save appleton/ea648a97df8c41514c84 to your computer and use it in GitHub Desktop.
Save appleton/ea648a97df8c41514c84 to your computer and use it in GitHub Desktop.
contents-from-ajax.js
var d = document.createElement('div');
d.innerHTML = 'a load of html that you got back from the server';
var contents = d.querySelector('div.whatever').innerHTML;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment