Skip to content

Instantly share code, notes, and snippets.

@hbi99
Last active January 1, 2016 04:19
Show Gist options
  • Save hbi99/8091406 to your computer and use it in GitHub Desktop.
Save hbi99/8091406 to your computer and use it in GitHub Desktop.
var str = '<data><author>Isaac Asimov</author><genre>Science Fiction</genre></data>',
doc = Defiant.xmlFromString(str),
node = Defiant.node.selectSingleNode(doc, '//author');
console.log( node.nodeValue );
// 'Isaac Asimov'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment