Make web site - JavaScript Programmer’s Reference } if (myUserAgent.indexOf(”msie”) != -1)
JavaScript Programmer’s Reference } if (myUserAgent.indexOf(”msie”) != -1) { if (myMajor > 3) { return “ie4″; } return “ie”; } return “other”; } // Start the correct scroller for this browser function startScroller() { eval(getBrowserType() + “_scrollPage()”); } // Browser specific scroller (IE) function ie4_scrollPage() { self.scrollTo(0,theScrollValue); theScrollValue++; if(theScrollValue == theMaxScroll) { theScrollValue = 0; } setTimeout(”ie4_scrollPage()”, 100); } // Browser specific scroller (Navigator) function nav4_scrollPage() { self.document.layer1.moveTo(0,-theScrollValue); theScrollValue++; if(theScrollValue == theMaxScroll) { theScrollValue = 0; } setTimeout(”nav4_scrollPage()”, 20); }
| Headline 1 |
| Headline 2 |
| Headline 3 |
| Headline 4 |
| Headline 5 |
| Headline 6 |