I am trying to create a dialog box that will appear only if the browser selected is IE (any version) however I get this error:

Message: HTML Parsing Error: Unable to modify the parent container element before the child element is closed (KB927917)

That's all in "Line/Char/Code" 0 so I do not know where is the error. The code I'm using is this:

 <script type="text/javascript"> 
  <!--  
  if(BrowserDetect.browser.contains("Explorer"))
  {     
    var Nachricht = 'Hemos detectado que está utilizando ' + BrowserDetect.browser + ' ' +
  BrowserDetect.version + '. Puede que algunas funciones no estén habilitadas. <p></p> Si desea experimentar todo el potencial del portal, por favor intente desde otro navegador (browser). <p></p>Gracias
 showDialog('¡Aviso Importante!',Nachricht,'warning',10);
 } 
 </script>

I've noticed if I remove the "BrowserDetect.browser" and .version it removes the error, but I need those to check =/...any ideas will be appreciated =).

link|improve this question

66% accept rate
feedback

9 Answers

up vote 23 down vote accepted

You're modifying document while it's being loaded (when browser hasn't "seen" closing tag for this element) . This causes very tricky situation in the parser and in IE it's not allowed.

IE blog has explanation of this.

The solution is to modify another element that's earlier in the document and has been loaded completely (where browser already saw closing tag for it).


BTW: The string </ is not allowed in <script> element. Use <\/ which is a safe equivalent in JS strings.

link|improve this answer
feedback

I had this same problem. My issue was that I was calling a Javascript function before the containing div was closed.

To fix the problem, I call the Javascript function within the jQuery ready event handler:

$(document).ready(function(){
    some_random_javascript_function();
});
link|improve this answer
1  
Note to future readers: You don't actually need jQuery to do this - do a search for the load or DOMReady event handlers – Yi Jiang Oct 5 '10 at 2:37
If you're going to use jQuery, you can use the nice syntax shortcut for document.ready: $(function() {return false;}); – Ian Grainger Oct 27 '10 at 14:47
feedback

Reading the doc linked by porneL, I found a simple workaround for this problem: Adding a parameter 'defer' to the script, all works fine.

<script defer=true>
link|improve this answer
feedback

Browser sniffing is a kludge that should be avoided when possible. It's best to sniff for the capability you want to use. Say you want to execute an XPath expression using document.evaluate(), but you don't know whether it's supported. Instead of sniffing for supported browsers, do this:

if (document.evaluate) {
    // go ahead and use it
} else {
    // browser doesn't support it; do something else
}
link|improve this answer
feedback

The best way to address IE only are conditional comments. You don't even need to use JavaScript. See for example http://www.positioniseverything.net/articles/ie7-dehacker.html.

link|improve this answer
feedback

Like Sergey Kirienko said: use conditional comments. The code below will only be executed by internet explorer. Microsoft has good information on this page.

<!--[if IE]>
<script type="text/javascript"> 
 showDialog('¡Aviso Importante!','message','warning',10);
 </script>
<![endif]-->

If you want a specific version you can test for that too:

<!--[if lte IE 7]>
    <script type="text/javascript"> 
     showDialog('¡Aviso Importante!','Your are using a too old version of Internet explorer. Please upgrade','warning',10);
    </script>
<![endif]-->
link|improve this answer
feedback

Message: HTML Parsing Error: Unable to modify the parent container element before the child element is closed (KB927917) Line: 0 Char: 0 Code: 0 URI: http://domain.com/

If you are facing the same problem in IE8 when you try to display a Flash banner, then i found a solution.

Please out your script code of SWFObject (var so = new SWFObject...etc) just before tag.. or just before body ends...

link|improve this answer
feedback

Maybe a little late, but this error also pops up if you are using SWFObject and have 2 divs with the same id.

I had duplicate divs, [with id="flashcontent", thanks to copy&paste].

Solved by renaming the divs with unique ids.

link|improve this answer
feedback

http://support.microsoft.com/kb/927917

There are some examples there.

link|improve this answer
feedback

protected by Bill the Lizard Oct 5 '10 at 2:45

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.