Skip to content

Instantly share code, notes, and snippets.

@jjgonecrypto
Created July 28, 2012 23:45
Show Gist options
  • Save jjgonecrypto/3195313 to your computer and use it in GitHub Desktop.
Save jjgonecrypto/3195313 to your computer and use it in GitHub Desktop.
mimic jquery selectors from unattached html (as text) in webkit
doc = document.implementation.createDocument('http://www.w3.org/1999/xhtml', 'html')
doc.documentElement.innerHTML = "<div><p class='first'>...</p></div>"
nodeList = doc.querySelectorAll(".first")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment