This is my first question, and I would appreciate you answering soon.
I would like code to repeat a function continuously…
I have tried some code but it hasn’t worked.
I tried this code:
<script type="text/javascript">
$(function()
{
$('#more').load('exp1.php'); // SERIOUSLY!
});
</script>
I want to repeat this function after some interval. I have tried
setInterval() and setTimeout()
But, I haven’t received results.
This will repeat the task until you clear the interval (with clearTimeout(repater))
Per OP’s original condition: