I'm having an impossibly hard time finding out to get the actual DOMElement from a jquery selector. Sample Code:
var checkbox = $("#bob").click(function() { //some code } )
and in another piece of code I'm trying to determine the checked value of the checkbox.
if ( checkbox.eq(0).SomeMethodToGetARealDomElement().checked ) //do something.
And please, I do not want to do:
if ( checkbox.eq(0).is(":checked")) //do something
That get's me around the checkbox, but other times I've needed the real DOMElement.
