Side navigation
#13431 closed bug (duplicate)
Opened February 11, 2013 04:29AM UTC
Closed February 11, 2013 04:31AM UTC
Error in parseJSON:
| Reported by: | odesuk@yahoo.com | Owned by: | |
|---|---|---|---|
| Priority: | undecided | Milestone: | None |
| Component: | unfiled | Version: | 1.9.1 |
| Keywords: | Cc: | ||
| Blocked by: | Blocking: |
Description
I had to update code to fix this issue for me.
LIne 548 in jquery-1.9.1.js
Error in IE 10: Invalid character
Added check for null & undefined before calling window.JSON
if (data === null || data === undefined) {
return data;
}
// Attempt to parse using the native JSON parser first
if ( window.JSON && window.JSON.parse ) {
return window.JSON.parse( data );
}
...
Attachments (0)
Change History (1)
Changed February 11, 2013 04:31AM UTC by comment:1
| resolution: | → duplicate |
|---|---|
| status: | new → closed |
Duplicate of #13430.