I'm trying to call another page called bidtable.php inside a div and I want it to refresh in every 20 seconds. Here is what I've tried but It's not working.
<script src="http://code.jquery.com/jquery-latest.js"></script>
<div class="row justify-content-center">
<div id="latestData" class="row justify-content-center col-md-5" style="background-color: black; margin: 2px auto; width: 370px;"></div>
</div>
$(document).ready(function() {
refreshTable();
});
function refreshTable() {
$('#latestData').load('bidtable.php', function() {
setTimeout(refreshTable, 20000);
});
}