Unfortunately it would be difficult to modify this script to scroll only parts of the page content. An easier way like someone mentioned above is to use iframes, or for inline content, do something like:
Code:
<div style="width: 200px; height: 200px; background-color: yellow; overflow:scroll; overflow-x: hidden">
<p>df<p>dfdf<p>df<p>dfdf<p>df<p>dfdf<p>df<p>dfdf<p>df<p>dfdf
</div>
The key is overflow: scroll, which is supported by both IE and Firefox/ Mozilla. overflow-x is only supported in IE, and disables the horizontal scrollbar.
Bookmarks