Side navigation
#1905 closed bug (fixed)
Opened November 09, 2007 12:23AM UTC
Closed November 16, 2007 11:56PM UTC
Unit tests fail in IE on $.ajax() - JSONP, Local
Reported by: | davidserduke | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.2.2 |
Component: | ajax | Version: | 1.2.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
The unit testing was failing in IE for
$.ajax() - JSONP, Local
In IE, the test was not coming back. Debugging showed that the regular expression testing for the =? was the issue. It turned out that s.data.match(jsre) was called then jsre.test(s.data). This worked in FireFox, but in IE the first call was setting the lastIndex of the regular expression so when the test() happened it was at the end of the string and failed.
Changing the test() call to another match() call fixed the problem.
Attachments (1)
Change History (1)
Changed November 16, 2007 11:56PM UTC by comment:1
resolution: | → fixed |
---|---|
status: | new → closed |
Fixed in [3840].