Skip to content
Advertisement

how to call a function in PHP after 10 seconds of the page load (Not using HTML)

Is there any way to call a function 10 seconds after the page load in PHP. (Not using HTML.)

Advertisement

Answer

This code works. Edited from randell’s answer.

<script type="text/javascript" src="jquery.js"></script>          
<script type="text/javascript">

$(document).ready(function()
  {
    setTimeout(function()    {   $('#some_id').load('index.php');    }, 10000);
  });
</script>  

Thanks to randell

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement