views:

101

answers:

2

Can you please tell me what snippet of code is failing in IE8 on this page:

http://www.gaiagps.com

I am virtualizing IE on my Mac, and I have no debugger.

Thanks a lot for your help!

+2  A: 

( I don't have IE 8 ) but it seems obvious... how about the unenclosed start tags on your script elements?

<script type="text/javascript" src="/static/javascript/jquery.easing.1.3.js"</script>    
<script type="text/javascript" src="/static/javascript/jqgalscroll.js"</script>
meder
That's a good catch, but that didn't fix it.
Andrew Johnson
You still didn't fix the first one ( production ) that is.
meder
Please be thorough and validate all the html after you do fix that and if it still doesn't work.
meder
If after you fix the first broken script start tag it still breaks, try commenting out entire script snippets locally if you can.
meder
My bad, thanks for the help. It works now.
Andrew Johnson
+1  A: 

by the way, you can debug with the developer tools on IE8

OR

you can get Firebug Lite and install on your pages to do cross browser debugging.

http://getfirebug.com/lite.html

thephpdeveloper