Your page is in violation of Dynamic Drive's
usage terms, which, among other things, state that the credit notice inside the script must be visible in the source code of the page(s) using it. Please reinstate the notice first.
To fix that, make this:
Code:
<script type="text/javascript" src="js/scrollPart1.js"></script>
like so:
Code:
<script type="text/javascript" src="js/scrollPart1.js">
/*
* Scrollable content script II- © Dynamic Drive (www.dynamicdrive.com)
* Visit http://www.dynamicdrive.com/ for full source code
* This notice must stay intact for use
*/
</script>
I'm not sure why this is happening on your page but, if you change both instances of:
Code:
contentheight=crossobj.offsetHeight
in scrollPart2.js to:
Code:
contentheight=parseInt(crossobj.style.height)
That wil fix it.
Bookmarks