Thanks for the attention, and sorry form my very bad english.
I have a nice function using jQuery:
function(){
//do something
if(certain conditions){
return true;
}else{
return false;
}
}
The function work nice... But I need to execute it every X seconds, while the function returns false. If the function returns true, the loop must be stopped.
I have not idea how to do that... Can you help me? Thanks in advance...