if a jquery object is passed into a function, can I get the 'regular' js out of it so I can run things like:
foo($(this))
function foo(node){
var jsnode = regular js object
var num = (jsnode.id).substr((jsnode.id).length-1, 1);
}
If it's quite complicated I can just work with the jQuery... just curious!