Style JavaScript Tutorial

< html>
    
        OnScroll Example
        
            window.onscroll = function () {
                var oWatermark = document.getElementById("divWatermark");
                oWatermark.style.top = document.body.scrollTop;
            }
        
    
    
         

Try scrolling this window.


         www.rntsoft.com

         

Line 1


         

Line 2


         

Line 3


         

Line 4


         

Line 5


         

Line 6


         

Line 7


         

Line 8


         

Line 9


         

Line 10


         

Line 11


         

Line 12