Как привязать ползунок на полосе прокрутки к объекту и чтобы он прокручивался с прокручиванием объекта при помощи верней и нижней стрелок на полосе прокрутки>>> Код следующий >>> Код (Text): <script> function scroll(obj, order,increase, delay, length) { if (!increase) increase = 1 if (!delay) delay = 1 var pos = (increase < 0) ? increase * -1 : increase pos = Math.ceil(length/pos) var first = order ? obj.scrollLeft : obj.scrollTop function doScroll() { if (length && pos-- <= 0) { clearInterval(obj.interval) return; } if (order) obj.scrollLeft += increase else obj.scrollTop += increase if ((order ? obj.scrollLeft : obj.scrollTop) !== first + increase) clearInterval(obj.interval) first = order ? obj.scrollLeft : obj.scrollTop } if (obj.interval) clearInterval(obj.interval) obj.interval = setInterval(doScroll, delay) } </script> <script> function stopScroll(obj) { function stopScroll() { clearInterval(obj.interval) document.onmouseup = null document.body.onmouseout = null } document.onmouseup = function() {stopScroll()} document.body.onmouseout = function() {stopScroll()} } </script> Собственно сама полоса прокрутки >>> Код (Text): <DIV style="Z-INDEX: 11; POSITION: absolute; TOP: 170px; LEFT: 940px; HEIGHT: 0px"> <TABLE cellSpacing=0 cellPadding=0 border=0><TBODY><TR><TD class=blok> <TABLE border=0 bordercolor=red cellpadding=0 cellspacing=0 leftMargin=0 topMargin=0 HSPACE=0 MARGINHEIGHT=0 MARGINWIDTH=0 width=100%> <TR><TD> <IMG SRC="ytc.files/scroll_t.gif" ALT="ytc" NAME="bgtop" onclick="scroll(scrollDiv, 0, -1, 1, 20)"> // стрелка вверх </TD></TR> <TR><TD> <IMG SRC="ytc.files/scroll_c.gif" ALT="ytc" NAME="bgtop"> // фон полосы прокрутки </TD></TR> <TR><TD> <IMG SRC="ytc.files/scroll_b.gif" ALT="ytc" NAME="bgtop" onclick="scroll(scrollDiv, 0, 1, 1, 20)"> // стрелка вниз </TD></TR> </TABLE> </TD></TR></TBODY></TABLE></DIV><NOINDEX> Как добавить собачку на полосу прокртки?
Код (Text): <html> <head> <title>Untitled</title> </head> <body> <textarea cols="10" rows="10" name="ttt"> Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text </textarea> </body> </html>