What is the reason for Object required Line: 24 Char: 4 Code: 0 error

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • rjonam
    New Member
    • Feb 2010
    • 12

    What is the reason for Object required Line: 24 Char: 4 Code: 0 error

    What is the reason for Object required Line: 24 Char: 4 Code: 0 error which occurs in IE 7, not in FF...
  • Dormilich
    Recognized Expert Expert
    • Aug 2008
    • 8694

    #2
    that depends on the code on line 24.

    Comment

    • rjonam
      New Member
      • Feb 2010
      • 12

      #3
      Provide me the reason for not working in IE, however working in FF ..?

      Is it a generic error or specific.?

      Comment

      • Dormilich
        Recognized Expert Expert
        • Aug 2008
        • 8694

        #4
        Originally posted by rjonam
        Provide me the reason for not working in IE, however working in FF ..?
        - IE is the technically worst browser available (ignoring standards)
        - IE implements some things differently
        - without the code concerned, I can say nothing

        Comment

        • rjonam
          New Member
          • Feb 2010
          • 12

          #5
          Thanks for your advise..

          Comment

          • Dormilich
            Recognized Expert Expert
            • Aug 2008
            • 8694

            #6
            if you post the code (wrapped in [code] [/code] tags) I can say more.

            Comment

            • rjonam
              New Member
              • Feb 2010
              • 12

              #7
              Sorry..I dont have code currently with me.

              Comment

              • Dormilich
                Recognized Expert Expert
                • Aug 2008
                • 8694

                #8
                show page source?

                Comment

                • rjonam
                  New Member
                  • Feb 2010
                  • 12

                  #9
                  Is there any temporary workaround by adjusting any setting in IE...?

                  Comment

                  • Dormilich
                    Recognized Expert Expert
                    • Aug 2008
                    • 8694

                    #10
                    not without knowing the code.

                    Comment

                    • rjonam
                      New Member
                      • Feb 2010
                      • 12

                      #11
                      i thought it is a general erro ...cannot give the source too as it seems confidential..

                      Comment

                      • Dormilich
                        Recognized Expert Expert
                        • Aug 2008
                        • 8694

                        #12
                        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

                        • rjonam
                          New Member
                          • Feb 2010
                          • 12

                          #13
                          Thanks for everything

                          Comment

                          • rjonam
                            New Member
                            • Feb 2010
                            • 12

                            #14
                            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>
                            Last edited by gits; Feb 24 '10, 07:53 AM. Reason: added code tags

                            Comment

                            Working...