To support the same signature as YAHOO.util.Dom.get
you could do something like this:
var getNode = function(el) { return Y.one('#'+ el) || new Y.Node(el);};
Here's an example of the function above in use.
To support the same signature as YAHOO.util.Dom.get
you could do something like this:
var getNode = function(el) { return Y.one('#'+ el) || new Y.Node(el);};
Here's an example of the function above in use.