Skip to content

Instantly share code, notes, and snippets.

@Kevnz
Created February 3, 2011 00:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Kevnz/808847 to your computer and use it in GitHub Desktop.
Save Kevnz/808847 to your computer and use it in GitHub Desktop.
Using YUI3 within node.js fails for id selector, but not class selector
var result = fs.readFileSync(filename, "binary");
YUI({loadOptional: true})
.use('nodejs-dom', 'event', 'node', function(Y) {
var doc = Y.one('doc');
doc.empty();
doc.append(result);
var idSelector = 'div#test-id';
var classSelector = 'div.test-case';
var idContainer = Y.one(idSelector);
var classContainer = Y.one(classSelector);
if(idContainer === null){
console.log('The ID Selector is null');
}
if(classContainer !== null){
console.log('The Class Selector is not null');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment