| Author |
What is Raw DOM Objects in Jquery?
|
Vishal Hegde
Ranch Hand
Joined: Aug 01, 2009
Posts: 970
|
|
What is Raw DOM Objects in Jquery?.
|
http://www.lifesbizzare.blogspot.com || OCJP:81%
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56173
|
|
No idea. Need more context to properly contemplate the question. Where did you see this term? How was it used in context?
The only thing I can guess is that it would refer to DOM elements not wrapped by a jQuery wrapped set.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
Rob Crowther
author
Ranch Hand
Joined: Nov 06, 2012
Posts: 165
|
|
|
I suspect he means $('#myelement')[0].
|
Read my books: Hello! HTML5 & CSS3 | HTML5 in Action
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56173
|
|
|
Or any other way to get to the unwrapped element -- that was my suspicion as well.
|
 |
Vishal Hegde
Ranch Hand
Joined: Aug 01, 2009
Posts: 970
|
|
|
I heard it from one of my Collegues are DOM Object and Jquery Objects different?
|
 |
Rob Crowther
author
Ranch Hand
Joined: Nov 06, 2012
Posts: 165
|
|
|
Yes, jQuery objects usually wrap DOM objects to provide convenient cross-browser compatible functionality.
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56173
|
|
|
The "jQuery object" is a wrapper that is created by calling the jQuery (or $) function with a selector, and "wraps" the selected DOM elements. The wrapper provides methods that operate on the DOM elements inside the wrapper.
|
 |
 |
|
|
subject: What is Raw DOM Objects in Jquery?
|
|
|