Skip to content

Instantly share code, notes, and snippets.

@aramkoukia
Created February 27, 2017 21:54
Show Gist options
  • Select an option

  • Save aramkoukia/c4f784638964bb36d4625a37097ba2d7 to your computer and use it in GitHub Desktop.

Select an option

Save aramkoukia/c4f784638964bb36d4625a37097ba2d7 to your computer and use it in GitHub Desktop.
DOMParser sample
let doc = new DOMParser().parseFromString('<div>first div content</div><div>second div content</div>', 'text/html');
let firstDiv = doc.body.firstChild;
let secondDiv = firstDiv.nextSibling;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment