<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1002930" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1002930</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/dhtml-scroll-bars#comment-1012946</link>
    <description> &lt;p&gt;Link:  &lt;a href=&quot;http://www.dynamicdrive.com&quot; class=&quot;bb-url&quot;&gt;www.dynamicdrive.com&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;There is a great scrollbar at Kelly McLarnon&#039;s homepage. Go to  &lt;a href=&quot;http://www.topazdesigns.com&quot; class=&quot;bb-url&quot;&gt;www.topazdesigns.com&lt;/a&gt;  then link to her site.&lt;/p&gt;
&lt;p&gt;Doc Ozone also uses them frequently and he may have a tutorial.  &lt;a href=&quot;http://www.ozones.com&quot; class=&quot;bb-url&quot;&gt;www.ozones.com&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;------------------&lt;br /&gt;
Lloyd Hassell&lt;br /&gt;
   &lt;a href=&quot;mailto:lloydhass@hotmail.com&quot; class=&quot;bb-email&quot;&gt;lloydhass@hotmail.com&lt;/a&gt;&lt;br /&gt;
 &lt;a href=&quot;http://go.to/hass&quot; class=&quot;bb-url&quot;&gt;http://go.to/hass&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Sat, 26 Feb 2000 05:00:00 +0000</pubDate>
 <dc:creator>Lloyd Hassell</dc:creator>
 <guid isPermaLink="false">comment 1012946 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/dhtml-scroll-bars#comment-1012945</link>
    <description> &lt;p&gt;Can you give me a link so I know what that looks like.  &lt;/p&gt;
&lt;p&gt;------------------&lt;br /&gt;
~Parker Trasborg~&lt;br /&gt;
Formerly- ParkerT and sixflags111&lt;/p&gt;
 </description>
     <pubDate>Wed, 23 Feb 2000 01:32:00 +0000</pubDate>
 <dc:creator>Parker</dc:creator>
 <guid isPermaLink="false">comment 1012945 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/dhtml-scroll-bars#comment-1012944</link>
    <description> &lt;p&gt;Ahh, found it. If anyones interesting the code is as follows&lt;br /&gt;
&amp;lt;ilayer name=&quot;scroll1&quot; width=170 height=150 clip=&quot;0,0,170,150&quot;&amp;gt;&lt;br /&gt;
&amp;lt;layer name=&quot;scroll2&quot; width=170 height=150 bgColor=&quot;yellow&quot;&amp;gt;&lt;br /&gt;
&amp;lt;div id=&quot;scroll3&quot; style=&quot;width:170;height:150;background-color:yellow;overflow:scroll&quot;&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;T&amp;lt;/big&amp;gt;his is a cool script that allows you to compact any content and confine it within a scrollable mini &quot;window&quot; Save valuable document space while making your page more &quot;interactive&quot;, 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 &quot;up&quot; and &quot;down&quot; buttons instead (since NS does not support the adding of scrollbars to contents).&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/layer&amp;gt;&lt;br /&gt;
&amp;lt;/ilayer&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;script&amp;gt;&lt;/p&gt;
&lt;p&gt;/*&lt;br /&gt;
Scrollable content Script-&lt;br /&gt;
© Dynamic Drive (&lt;a href=&quot;http://www.dynamicdrive.com&quot; title=&quot;www.dynamicdrive.com&quot;&gt;www.dynamicdrive.com&lt;/a&gt;)&lt;br /&gt;
For full source code, installation instructions,&lt;br /&gt;
100&#039;s more DHTML scripts, and Terms Of&lt;br /&gt;
Use, visit dynamicdrive.com&lt;br /&gt;
*/&lt;/p&gt;
&lt;p&gt;var nsstyle=&#039;display:&quot;&quot;&#039;&lt;br /&gt;
if (document.layers)&lt;br /&gt;
var scrolldoc=document.scroll1.document.scroll2&lt;br /&gt;
function up(){&lt;br /&gt;
if (!document.layers) return&lt;br /&gt;
if (scrolldoc.top&amp;lt;0)&lt;br /&gt;
scrolldoc.top+=10&lt;br /&gt;
temp2=setTimeout(&quot;up()&quot;,50)&lt;br /&gt;
}&lt;br /&gt;
function down(){&lt;br /&gt;
if (!document.layers) return&lt;br /&gt;
if (scrolldoc.top-150&amp;gt;=scrolldoc.document.height*-1)&lt;br /&gt;
scrolldoc.top-=10&lt;br /&gt;
temp=setTimeout(&quot;down()&quot;,50)&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;function clearup(){&lt;br /&gt;
if (window.temp2)&lt;br /&gt;
clearInterval(temp2)&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;function cleardown(){&lt;br /&gt;
if (window.temp)&lt;br /&gt;
clearInterval(temp)&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;&amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;span style=&quot;display:none&quot; style=&amp;gt;&amp;lt;a href=&quot;#&quot; onMousedown=&quot;up()&quot;&lt;br /&gt;
onMouseup=&quot;clearup()&quot; onClick=&quot;return false&quot; onMouseout=&quot;clearup()&quot;&amp;gt;Up&amp;lt;/a&amp;gt; | &amp;lt;a href=&quot;#&quot;&lt;br /&gt;
onMousedown=&quot;down()&quot; onMouseup=&quot;cleardown()&quot; onClick=&quot;return false&quot;&lt;br /&gt;
onMouseout=&quot;cleardown()&quot;&amp;gt;Down&amp;lt;/a&amp;gt; | &amp;lt;a href=&quot;#&quot; onClick=&quot;if (document.layers) scrolldoc.top=0;return false&quot;&amp;gt;Top&amp;lt;/a&amp;gt; | &amp;lt;a href=&quot;#&quot; onClick=&quot;if (document.layers) scrolldoc.top=scrolldoc.document.height*(-1)+150;return false&quot;&amp;gt;Bottom&amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt;&lt;/p&gt;
 </description>
     <pubDate>Tue, 22 Feb 2000 01:15:00 +0000</pubDate>
 <dc:creator>Grandmaster</dc:creator>
 <guid isPermaLink="false">comment 1012944 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
