View Full Version : Errorless Firefox Problem
QuinS33
01-17-2009, 06:21 AM
http://www.cincoptimo.com/headsetDemo.php
Firefox just won't load the page without an error in the console. Firebug shows the body tag truncated and self-terminating. Viewing the source shows the correct html that should be rendered. I would search the forums for help, but really what should I search for? The page loads fine in Opera and Safari.
I'm clueless. Anybody seen this before or have a solution? Thanx.
bluewalrus
01-17-2009, 07:41 AM
I think it's something to do with <script type="text/javascript" src="headset.js" /> . That's where my color coding ends in my view source in flock.
Describe
Firefox just won't load the page without an error in the console.
Do you mean there is an error displaying or there is no error but there should be? If the first then what is the error? If the second then that may be because it finds nothing wrong with your javascript but thinks that's where it ends. This problem is not limited to Firefox howver. My knowledge of javascript however is limited to the parts of what it can do sorry I can't help you there.
Snookerman
01-17-2009, 08:21 AM
Don't use xhtml, please read this article:
http://www.webdevout.net/articles/beware-of-xhtml (http://www.webdevout.net/articles/beware-of-xhtml)
Now if you read the article you will understand that your page is being rendered as html and the following code is invalid:
<script type="text/javascript" src="headset.js" />
Change it to this:
<script type="text/javascript" src="headset.js"></script>
Good luck!
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.