Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is using jQuery a guarantee for cross browser compatibility? [closed]

I noticed that writing cross-browser compatible code in JavaScript could be a little difficult in some cases. Is using jQuery a guarantee that my JavaScript code works in all browsers?

like image 311
Maddy Avatar asked Jun 17 '11 10:06

Maddy


People also ask

What's your method for ensuring cross browser compatibility?

The following are three ways using which teams can make websites compatible with popular browsers: Using mobile/desktop browser emulators for each browser. Setting-up on-premise device labs. Using a cloud-based platform that enables you to perform cross browser testing on browsers installed on real devices.


2 Answers

jQuery provides good compatibility among modern browsers. There are, however, no guarantees. No one can offer you that.

like image 139
Jonathan Wood Avatar answered Nov 10 '22 12:11

Jonathan Wood


As you can read on jQuery's page about browser compatibility, it supports all modern browsers including old but widely used browsers like Internet Explorer 7. If you encounter an issue with a browser using jQuery, you should submit a bug report. The beauty with frameworks such as jQuery is their compatibility.

Good luck!

like image 35
John Moberg Avatar answered Nov 10 '22 12:11

John Moberg