Reputation: 36442
Below code gives me JQuery object, which includes JQuery functions associated with.
var element = $("#element");
But how can I get the HTML DOM element from the above JQuery object ?
Upvotes: 0
Views: 87
Reputation: 59343
You can use get (link to API).
element.get()
It will return an array.
Upvotes: 2