Here's the real fix, this has come up a few times with this and other event positioned scripts here that haven't gotten the doctype/document.body update yet. Do a global search and replace on the script:
search for:
document.body
replace with:
iecompattest()
Then add this function to the script:
Code:
function iecompattest(){
return (document.compatMode && document.compatMode.indexOf("CSS")!=-1)? document.documentElement : document.body
}
It can go just about anywhere but, for simplicity's sake, put it just above the credit:
Code:
<script language="javascript" type="text/javascript">
<!--
function iecompattest(){
return (document.compatMode && document.compatMode.indexOf("CSS")!=-1)? document.documentElement : document.body
}
/*
Image w/ description tooltip- By Dynamic Web Coding (www.dyn-web.com)
Copyright 2002 by Sharon Paine
Visit http://www.dynamicdrive.com for this script
*/
Bookmarks