I\'m having an impossibly hard time finding out to get the actual DOMElement from a jquery selector. Sample Code:
Edit: seems I was wrong in assuming you could not get the element. As others have posted here, you can get it with:
$('#element').get(0);
I have verified this actually returns the DOM element that was matched.