Create jQuery infinite loop -
i'm trying make infinite loop in jquery. understood basic syntax was
$(document).ready(function(){ function helloworld() { alert("hello, world!"); helloworld(); } });
... nothing. how this? thanks!
$(document).ready(function(){ function helloworld() { alert("hello, world!"); helloworld(); } helloworld(); });
Comments
Post a Comment