Reputation: 4000
Do the jquery selectors 'first', 'odd', work in all browsers?
Upvotes: 1
Views: 97
Reputation: 5405
Yes it works properly in all browsers. The main advantage of using javascript framework is that they handle all the browser compatibility issues.
Check the below link for more details -
http://docs.jquery.com/Browser_compatibility
Upvotes: 0
Reputation: 34652
Yes. The entire point of jQuery is to support cross-browser comparability (per the home page, it supports IE 6.0+, FF 2.0+, Safari 3.0+, Opera 9.0+ and Chrome). If you do come across a bug, please report it to the jQuery team.
Upvotes: 6