jQuery - Loop / Checagem Infinito

by Rafael Nepomuceno

JavaScript

function funcx()
   {
   alert('bla');
   // break out here if needed
   setTimeout(funcx, 5000);
   }

funcx();