Exist:
$('a').click(function(){
var jqueryobject = $(this);
var domelement = this;
});
Inside such a closure, it thisalways represents a native DOM elementthat should / may be wrappedin a jQuery object.
If you already have a jQuery object and need to DOM elementuse
var DOMelement = $(this)[0];
or
var DOMelement = $(this).get(0);
jQuery array like objects, []. jQuery . Get() . DOM element .
- this?
thisthis ,thisthis - protoypal.