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

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -