<!--
/*
* testScrollBarToTop.html
*
* @(#) $Id: testScrollbarToTop.html,v 1.1 2013/10/29 01:17:35 mlemos Exp $
*
*/
-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en">
<head>
<title>Test the Scrollbar To Top Object</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<style type="text/css">
* { font-family: sans-serif,arial,helvetica }
#content { width: 3000px }
</style>
<script type="text/javascript" src="scrollbarToTop.js"></script>
<script type="text/javascript"><!--
/*
* Create the top scrollbar object
*/
var sb = new ML.content.scrollbarToTop();
// --></script>
</head>
<body onload="sb.addTopScrollbar('content');">
<div id="content">Large content area! Large content area! Large content area! Large content area! Large content area! Large content area! Large content area! Large content area!</div>
</body>
</html> |