I'd like to be able to do:
if ($("cheese_tag") == document.getElementsByTag("cheese_tag")[0]){
alert("success!");
}
Is this possible? Basically what I'm wanting to do is use the ease and power of jQuery selectors to manipulate elements. Is what I'm talking about possible?
REVISION: Sorry, a better way to state my question would be "Can I convert jQuery objects to ones that normal javascript can manipulate?" as in get jQuery to return a javascript object for manipulation.