matyr #6377(2008/05/29 09:21 GMT) [ JavaScript ] Rating0/0=0.00
see: jQuery
1 2 3 4 5 6 7 8 9 10 11
<script src="jquery-1.2.6.js"></script><script> $(function(){ var stdout = $(document.body); var pause = false var loop = setInterval(function(){ pause || stdout.append('a') }, 1000); $().bind('keydown', function(e){ e = String.fromCharCode(e.keyCode); 'P' == e ? pause = !pause : 'Q' == e ? clearInterval(loop) : 0; }); }) </script>
Rating0/0=0.00-0+
[ reply ]
matyr
#6377()
[
JavaScript
]
Rating0/0=0.00
see: jQuery
Rating0/0=0.00-0+
[ reply ]