Opened 16 years ago
Closed 14 years ago
#1426 closed enhancement (invalid)
Gracefully fail in IE < 6
Reported by: | ajpotts | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.1.4 |
Component: | core | Version: | 1.1.3 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Is there any simple way not to fire errors in IE < 6?
Having put up a window.onerror => server logging feature, I'm still getting a significant number of users firing off jquery errors because they're using 5.5 or 5.0. I'm not expecting it to work, but not expecting it to cause pop-up errors either.
Alternatively, is there any possible workaround, e.g. [pseudo-code]
<!--[if IE < 6]>
jquery = null;
<![endif]-->
Note: See
TracTickets for help on using
tickets.
You can surround the jQuery script include and the ready handler code with IE conditional comments. If your page degrades gracefully without Javascript it should work fine.