Amit
Amit

Reputation: 4000

jquery selectors work in all browsers?

Do the jquery selectors 'first', 'odd', work in all browsers?

Upvotes: 1

Views: 97

Answers (2)

Alpesh
Alpesh

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

JasCav
JasCav

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

Related Questions