I have two queries one in the file test.php
and one in a file test2.php
... I'd like to refresh the divs every 5 seconds, however the content of div #test gets overwritten by the content of the div test2.
why is this happening? How do i fix it?
<script>
$(document).ready(function() {
$("#test").load("test.php");
var refreshme = setInterval(function() {
$("#test").load('test.php');
}, 5000);
$.ajaxSetup({ cache: false });
});
</script>
<div id="test">
<?php
include ('test.php');
?>
</div>
<br>
<script>
$(document).ready(function() {
$("#test2").load("random.php");
var refreshId = setInterval(function() {
$("#test2").load('random.php');
}, 5000);
$.ajaxSetup({ cache: false });
});
</script>
<div id="test2">
<?php include 'test2.php' ?>
</div>