Opened 14 years ago
Closed 13 years ago
#3734 closed bug (worksforme)
Bug in function append with iframe in ie7
Reported by: | LosGardos | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.3 |
Component: | core | Version: | 1.2.6 |
Keywords: | append | Cc: | |
Blocked by: | Blocking: |
Description
I have this code with iframe
<!DOCTYPE HTML PUBLIC "-W3CDTD HTML 4.01 TransitionalEN"> <html>
<head> <meta http-equiv="content-type" content="text/html; charset=windows-1250"> <meta name="generator" content="PSPad editor, www.pspad.com"> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script> <title></title> </head> <body>
<div></div> <iframe id='okno' src='iframeUrl'></iframe>
</body>
</html>
and this is page code in this iframe
<!DOCTYPE HTML PUBLIC "-W3CDTD HTML 4.01 TransitionalEN"> <html>
<head> <meta http-equiv="content-type" content="text/html; charset=windows-1250"> <meta name="generator" content="PSPad editor, www.pspad.com"> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script> <title></title> </head> <body>
ahoj <script type='text/javascript'>
var el; var el2; $(document).ready(function(e){
el = top.$('div'); el2 = $('<b>ahoj</b>');
});
</script> <input type="button" value="click" onclick="el.append(el2)">
</body>
</html>
When click on button in ie7 i getting error. In FF3 and Opera 9 this working.
Attachments (2)
Change History (4)
comment:1 Changed 14 years ago by
Component: | unfilled → core |
---|---|
Owner: | flesler deleted |
comment:2 Changed 13 years ago by
Resolution: | → worksforme |
---|---|
Status: | new → closed |
This worked for me in IE8 and jQuery 1.4.2, test files attached.