Skip to content

Instantly share code, notes, and snippets.

@LeifW
Created August 7, 2011 21:51
Show Gist options
  • Select an option

  • Save LeifW/1130833 to your computer and use it in GitHub Desktop.

Select an option

Save LeifW/1130833 to your computer and use it in GitHub Desktop.
Find all xmlns:declarations from JS in text/html
$("*").map(function(){return $.grep(this.attributes, function(a){return a.name.slice(0,5) === "xmlns"})})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment