vote up 0 vote down star

Hi, With jQuery.support and without using jQuery.browser how would I know if the browser would return nodes of Type of Text_Node ?

Ex: Would the value of $(this).contents().length be the same in Firefox and IE if there is nodes of type Text_Node ?

Found my response on stackoverflow:

jQuery.support.leadingWhitespace
flag

60% accept rate

2 Answers

vote up 2 vote down

$('td') will always return a jQuery object, not an actual DOM element or node. jQuery does this in order to standardize behaviour and help alleviate the need for browser-specific handling of different types.

link|flag
+1: you never need to know if the type is text_node if you always let jQuery handle the DOM manipulation. – geowa4 Sep 2 at 17:02
My question was not well formulated. There is a thread on how to obtain text nodes with Jquery here : stackoverflow.com/questions/298750/…. But Firefox will give a different results with $(this).contents().length than IE. So my question persist – Jean-Philippe Martin Sep 2 at 20:05
vote up 0 vote down check
> jQuery.support.leadingWhitespace
link|flag

Your Answer

Get an OpenID
or

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