1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-28 03:06:20 -04:00
elinks/test/ecmascript/scroll3.html

18 lines
383 B
HTML
Raw Normal View History

2021-06-14 15:29:22 -04:00
<head>
<script>
var tekst = 'ELinks scroll innerHTML part 3. 11.06.2021 EURO ';
function scrollText() {
var znak = tekst.charAt(0);
tekst = tekst.substring(1, tekst.length) + znak;
return tekst;
}
function scroll() {
document.getElementById('s').innerHTML = scrollText();
setTimeout(scroll, 1000);
}
</script>
</head>
<body onload="scroll()">
<div id="s"></div>
</body>