-4

I have one page which have chat application,wall comments,uploading photos,videos on that page.All is working fine on mozilla firefox,chrome but does not work on IE7.It gives two error

jquery-1.4.4.min.js

HTML Parsing error.Unable to modify the parent container element before the child element is closed (KB9278917).

Because of this error my rightside bar of this page is not seeing & chat application is also not working.

Please reply me as early as possible.

Thank you

Marcel Korpel
  • 21,536
  • 6
  • 60
  • 80
  • 7
    It would be helpful if you show us relevant parts of your markup and code. BTW, “jquery-1.4.4.min.js” cannot be a full error message. Perhaps it's just one message? And please don't ask for quick help, answers will not show up sooner if you do so, it's merely annoying. – Marcel Korpel May 05 '11 at 13:43
  • can you give the link??? – jimy May 05 '11 at 13:50
  • 1
    With the information given I can say: You did something wrong. – Felix Kling May 05 '11 at 14:02

1 Answers1

4

This question discusses the error message you have listed as (2).

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.

Since you're using jQuery, you can probably avoid this by putting whatever code is causing this error in a function called once the page is loaded, using the jQuery.ready function:

<script>
jQuery.ready(function() {
  // put your code here, instead of just inside <script> tags directly
});
</script>
Community
  • 1
  • 1
Jeremy
  • 1
  • 85
  • 340
  • 366