Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
1  
It depends entirely on what you intend to do. For example, ajax requests are standardised within jQuery, so you can rest assured ajax will work across all browsers simply by coding it using jQuery. That is only one example. – psynnott Jun 17 '11 at 10:56
Have a look at this page: docs.jquery.com/Browser_Compatibility – nfechner Jun 17 '11 at 10:56

closed as not constructive by Frédéric Hamidi, Tim Post Jun 17 '11 at 12:39

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

up vote 1 down vote accepted

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!

share|improve this answer

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

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.