Opened 13 years ago
Closed 13 years ago
#5307 closed bug (invalid)
ie8 problem
Reported by: | sjorsvanleeuwen | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.4 |
Component: | ajax | Version: | 1.3.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
in ie8 jquery hangs at startup at line 3517 (uncompressed stable release 3.1.2).
I made a small workaround by putting a try catch around the else statement like: if( s.username ) {
xhr.open(type, s.url, s.async, s.username, s.password);
} else {
try {
xhr.open(type, s.url, s.async);
} catch(e) {}
}
It works for now because i dont use the above code but it would be nice if it can be fixed :)
Change History (1)
comment:1 Changed 13 years ago by
Component: | unfilled → ajax |
---|---|
Resolution: | → invalid |
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
We're definitely going to need a full test case in order to diagnose what's going on here. If you have a page that we can look at we would definitely appreciate it.