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

Popular posts from this blog

ios - Change Storyboard View using Seague -

inversion of control - Autofac named registration constructor injection -

verilog - Systemverilog dynamic casting issues -