I found this script in W3 school.
<script>
$(document).ready(function(){
$("button").click(function(){
$("#div1").load("demo_test.txt");
});
});
</script>
What this script does is when ever a person click the button it will load the demo_text.txt. What I need is to make it load every 30 sec.
Help me please.