vote up 2 vote down star

Following up on my question about jQuery.get() I was wondering if there is a list of DOM properties and methods that aren't available in jQuery that can only be accessible if you were working with the raw DOM object (i.e. $("#someID").get().scrollHeight; )

flag

5 Answers

vote up 3 vote down check

I haven't encountered a list but if one existed it would probably be quite lengthy. In addition to browser-specific (proprietary) properties there's a bunch of other less useful properties and methods not currently abstracted by jQuery. But then, I don't really see this as a problem, or even a valid point of discussion because jQuery IS JavaScript; if you need access to something beyond what jQuery provides then you can use get() or access a specified element within one of your "jQuery collections" like an array:

jQuery(elem)[0].someDOMProperty;

Plus jQuery provides absolutely no support for non-element nodes within the DOM. If, for whatever reason, you need direct access to comment nodes, text nodes etc. then you'll need to use the "raw" DOM.

link|flag
vote up 0 vote down

No. JQuery is just JavaScript. If you can do it in JavaScript, you can do it in jQuery. Some properties and methods are overwritten in the context of a jQuery object and that's where you would want to us the get() method--to 'get' (i.e. access) the standard property/method.

That's really as complicated as it is.

link|flag
I wonder how do you bind onbeforeunload with jquery :D – Ionut Staicu Apr 21 at 7:41
$(window).bind('beforeunload', function(){}); – J-P Apr 21 at 9:39
vote up 1 vote down

Every attribute of every element is accessible through the attr() function. If you could do a document.getElementById() on that element and then access a property, you can also do it using the attr() function. However, some properties are accessed more easily in other ways when using jquery. For example, to see if an element is hidden or visible, you could do:

var isVisible=$("#el").is(":visible");

instead of using the attr() method. Similarly, you can find the selectedIndex of dropdowns and the text of the selected option, in easier ways than using the attr() method. This pdf outlines some of these easier approaches.

To access a css property, you are better off doing:

var fontWeight=$("#el").css("fontWeight");

rather than using get() or attr(). You can also set the css properties in this way, e.g:

$("#el").css("fontWeight","bold");
link|flag
1  
DOM properties are not the same as HTML attributes, and definitely don't have anything to do with CSS. – nickf Apr 21 at 1:03
Where have I claimed that they are? – Click Upvote Apr 21 at 1:09
vote up 0 vote down

I don't know of a compiled list of DOM operations/properties that are NOT available in jQuery (and a quick google search didn't turn anything up), but if you go to http://api.jquery.com/ you can see the entire API, and even download it as an Adobe AIR app in case you don't have internet when you need it.

link|flag
vote up 0 vote down

I could be wrong, but I think you can access any properties via the attr method.

link|flag
the $.attr() method only accesses the attributes of a single element in the DOM. I think he means the DOM in general, not just a specific tag. – Scott M. Apr 21 at 0:09
Huh? I know it accesses for a single element. Attributes are specific to elements when you are accessing them. I don't understand what you are trying to say here.. – Matt Apr 21 at 0:19
1  
attr gets the HTML properties, like the "href" in <a href="..."> -- DOM properties are things like childNodes, nodeType, innerHTML, parentNode. – nickf Apr 21 at 1:02
@nick, you can retrieve all of these properties using the attr() method. If it works on one dom attrib such as innerHTML, it will work with all. – Click Upvote Apr 21 at 1:11
Please try something before you comment that someone else is wrong. – Matt Apr 21 at 2:07
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.