Side navigation
#11402 closed bug (fixed)
Opened February 27, 2012 05:30PM UTC
Closed May 12, 2012 09:26PM UTC
Last modified November 30, 2012 01:22PM UTC
evalScript function fails with error error 80020101 in IE
Reported by: | HearnMichael | Owned by: | jaubourg |
---|---|---|---|
Priority: | low | Milestone: | 1.8 |
Component: | ajax | Version: | 1.7.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Line # 6433 is cleaning script text before calling globalEval but only cleans the opening "<!--" tag leaving the closing "-->" tag. This causes error "Could not complete the operation due to error 80020101" in IE8 & 9 but works in other non IE browsers.
I would suggest cleaning both the opening and closing tag to eliminate the error.
Also see Ticket #10285 http://bugs.jquery.com/ticket/10285
Attachments (0)
Change History (13)
Changed February 28, 2012 10:11PM UTC by comment:1
Changed March 01, 2012 02:55PM UTC by comment:2
Found bug was introduced from this fix
Changed March 12, 2012 04:39PM UTC by comment:3
resolution: | → duplicate |
---|---|
status: | new → closed |
Changed March 28, 2012 12:00AM UTC by comment:5
Replying to [comment:4 mikesherov]:
Duplicate of #9221.
This is not a duplicate of 9221... the code change made from 9221 is causing this bug. 9221 only comments out the opening tag but IE throws an error if the opening tag is commented but the closing tag remains. Both the opening tag and the closing tag need to be commented. This is still an issue.
Changed March 31, 2012 12:05AM UTC by comment:6
resolution: | duplicate |
---|---|
status: | closed → reopened |
oops.
Changed May 05, 2012 06:32PM UTC by comment:7
component: | unfiled → ajax |
---|---|
milestone: | None → 1.8 |
priority: | undecided → low |
status: | reopened → open |
Changed May 05, 2012 10:03PM UTC by comment:8
owner: | → jaubourg |
---|---|
status: | open → assigned |
How is this related to ajax? I'll look into this anyway ;)
Changed May 05, 2012 11:29PM UTC by comment:9
Changed May 12, 2012 09:26PM UTC by comment:10
resolution: | → duplicate |
---|---|
status: | assigned → closed |
Changed May 12, 2012 09:26PM UTC by comment:11
Duplicate of #10285.
Changed May 16, 2012 06:04PM UTC by comment:12
resolution: | duplicate → fixed |
---|
Fixes #11402. domManip now also removes the closing part of HTML comments or CDATA surrounding executed scripts. Unit tests added.
Changeset: a743be19bd3622071c22e9874c92024bc3f5367a
Changed November 30, 2012 01:22PM UTC by comment:13
I got the same error 80020101
Then while checking the code line by line,i came to know by mistake i added <script<script>(twice,which is unwanted)
once is removed these ,error is not coming.
so please check all your javascript code ,especially opening tag are closed properly
Also see Comments on 1.7.0 release
http://blog.jquery.com/2011/11/03/jquery-1-7-released/#comment-528384
http://blog.jquery.com/2011/11/03/jquery-1-7-released/#comment-528386