Does jQuery use a browser compatibility guarantee?

I noticed that when writing cross-browser code in JavaScript it can be a little complicated in some cases. Is using jQuery a guarantee that my JavaScript code works in all browsers?

+6
source share
2 answers

As you can read on the jQuery page on browser compatibility , it supports all modern browsers, including older but widely used browsers such as Internet Explorer 7. If you encounter a problem in the browser using jQuery, you should report an error. Beauty with frameworks like jQuery is their compatibility.

Good luck

+3
source

jQuery provides good compatibility between modern browsers. However, there are no guarantees. No one can offer you this.

+7
source

Source: https://habr.com/ru/post/890753/


All Articles