jQuery - Loop / Checagem Infinito
JavaScript
function funcx()
{
alert('bla');
// break out here if needed
setTimeout(funcx, 5000);
}
funcx();
function funcx()
{
alert('bla');
// break out here if needed
setTimeout(funcx, 5000);
}
funcx();