First off, please replace the script credit:
HTML Code:
<script type="text/javascript" src="iframe.js">
/***********************************************
* IFrame SSI script II- © Dynamic Drive DHTML code library (http://www.dynamicdrive.com)
* Visit DynamicDrive.com for hundreds of original DHTML scripts
* This notice must stay intact for legal use
***********************************************/
</script>
"This notice must stay intact for legal use".
The script does not appear to be operating at all on your page in FF. I think that may be because another script is preventing it from doing so. Try reversing the order of these script calls to see what happens (I've also removed the language attribute, it has been deprecated in favor of the type attribute, lowercase is preferred for these tags as well):
HTML Code:
<script type="text/javascript" src="iframe.js">
/***********************************************
* IFrame SSI script II- © Dynamic Drive DHTML code library (http://www.dynamicdrive.com)
* Visit DynamicDrive.com for hundreds of original DHTML scripts
* This notice must stay intact for legal use
***********************************************/
</script>
<script type="text/javascript" src="align.js">
</script>
Make it:
HTML Code:
<script type="text/javascript" src="align.js">
</script>
<script type="text/javascript" src="iframe.js">
/***********************************************
* IFrame SSI script II- © Dynamic Drive DHTML code library (http://www.dynamicdrive.com)
* Visit DynamicDrive.com for hundreds of original DHTML scripts
* This notice must stay intact for legal use
***********************************************/
</script>
This might do it or align.js might need to be edited to load as the iframe script does:
Code:
if (window.addEventListener)
window.addEventListener("load", DoReposition, false)
else if (window.attachEvent)
window.attachEvent("onload", DoReposition)
else
window.onload=DoReposition
in place of:
Code:
window.onload=DoReposition;
There could be other problems.
Bookmarks