Modify ↓
Ticket #9993 (closed bug: duplicate)
Jquery throws IE8 specific error
| Reported by: | daniel.diaz@… | Owned by: | |
|---|---|---|---|
| Priority: | undecided | Milestone: | None |
| Component: | unfiled | Version: | 1.6.2 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
IE8 throws an error when arrives to resolveWith: function( context, args ) { ...... try {..} finally { ...},
It happens cause IE8 needs try / catch / finally, I'm not sure, but I think it was implemented on IE9.
To fix the issue, just adding a catch clause. For instance:
resolveWith: function( context, args ) { ......
try {..} catch(e){ Added by Niel 06.08.211 to fix. } finally { ...},
Thank you so much,
Daniel
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.
