There are several CSS selectors that are not supported by IE6 example:
> (Child selector)
+ (Selects an element that is a next sibling of another element.)
[attr] selector
:first-child
Does this impact the functioning of jQuery? i.e. if you use eg :
$("div > a").css("","");
Will it cause problems in IE6 or will it work without issues. Basically my question is, in its core does jQuery rely on the browser or does it use its own logic to select DOM elements.
I know everyone hates IE6 and you probably feel it should not be supported, but, I am trying to understand how jQuery actually works under the hood.
Thanks!