A regular dom element is such as:
document.getElementById(\'a\')
or
document.createElement(\'div\')
But jQuery retu
You can reference the DOM element with .get(0) or [0], eg $('#foo')[0] assuming there is just one.
.get(0)
[0]
$('#foo')[0]