What is the reason for Object required Line: 24 Char: 4 Code: 0 error which occurs in IE 7, not in FF...
What is the reason for Object required Line: 24 Char: 4 Code: 0 error
Collapse
X
-
Comment
-
Then I can only say that IE has a different Event handling implementation, many of the advanced DOM methods don’t work, some methods are buggy … refer to www.quirksmode.org and www.positioniseverything.net for further information.Comment
-
Is anything done with below posted code..?
Code:<html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Vocabulary Review</title> <link rel="stylesheet" type="text/css" href="math.css" /> <script type="text/javascript" src="grade.js"></script> <script type="text/javascript"> var theWord = unescape(location.search.substring(1)) function closeVocab(){ window.close(); } </script> </head> <body><div style="position:absolute; top:-4px; left:0px; width: 600px; overflow: visible;"><img src="vocab/vocabbgtop.jpg" alt="" width="600" height="104" /></div> <div style="position:absolute; top:69px; left:279px;"><a href="javascript:closeVocab();"><img src="vocab/closebutton_red.gif" alt="close window" width="69" height="43" border="0" /></a></div> <div id="frameHolder" style="position:absolute; top:115px; width:600px; height:105px; visibility: visible; text-align: left; left: 1px;" align="center"> <iframe id="vocabPage" name="vocabPage" width="600" height="400" frameborder="0" scrolling="no" marginheight="10" marginwidth="10" src="" align="left"></iframe></div> <script type="text/javascript"> var f = document.getElementById("vocabPage"); f.src = VPATH + theWord + ".html"; //f.src = "word.html"; if(navigator.appName == "Netscape"){ var p = f.contentDocument; }else{ var p = f.contentWindow.document; } </script> </body> </html>Comment
Comment