Skip to content

Instantly share code, notes, and snippets.

@oscarmorrison
Last active February 7, 2016 21:01
Show Gist options
  • Save oscarmorrison/c7bfc44099197fe702aa to your computer and use it in GitHub Desktop.
Save oscarmorrison/c7bfc44099197fe702aa to your computer and use it in GitHub Desktop.
Return first Image from HTML Content
var getFristImage = function(content) {
var el = document.createElement( 'html' );
el.innerHTML = content;
return el.getElementsByTagName( 'img' )[0].src;;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment