script widget tulisan ketik
PASTEKAN SAJA DI GADGET: HTML/JAVASCRIPT .
KEBAWAH script widget tulisan ketik
==================================
<p id="scroller"></p>
<script type="text/javascript">
// Original: Pun Man Kit <mkpunnl@netvigator.com>
function scroll(position) {
var msg = "TEMPLATE INI TAK DI DUKUNG INTERNET EXPLORER [IE] - CUMA MOZILLA";
var out = "";
var sc = document.getElementById("scroller");
for (var i=0; i < position; i++){
out += msg.charAt(i);
}
out += msg.charAt(position);
sc.innerHTML = out;
position++;
if (position != msg.length) {
window.setTimeout(function() { scroll(position); }, 50);
}
else {
window.setTimeout(function() { scroll(0); }, 2000);
}
}
scroll(0);
</script>
KEMBALI