Whoa... I just figured out a way to do this.. 
Code:
<html>
<head>
<script>
function scroll() {
scroller.scrollTop=left.scrollTop
}
</script>
</head>
<body>
<div id="left" style="color:white;position:absolute;left:-70;overflow-y:scroll;overflow-x:hidden;scroll;width:100px;height:100px" onscroll="scroll()">
This is a cool script that allows you to compact any content and confine it within a scrollable mini "window" Save
valuable document space while making your page more "interactive", all at the same time! This script uses two
different techniques- one for IE, one for NS- to create the scrollable window. Scrollbars will be available to
IE 4 users to scroll the window, while NS users will need to use the "up" and "down" buttons instead (since NS
does not support the adding of scrollbars to contents).
</div>
<div id="scroller" style="padding:2px;border:1px solid gray;overflow:hidden;width:100px;height:100px;margin-left:20">
This is a cool script that allows you to compact any content and confine it within a scrollable mini "window" Save
valuable document space while making your page more "interactive", all at the same time! This script uses two
different techniques- one for IE, one for NS- to create the scrollable window. Scrollbars will be available to
IE 4 users to scroll the window, while NS users will need to use the "up" and "down" buttons instead (since NS
does not support the adding of scrollbars to contents).
</div>
</body>
</html>
Bookmarks