I'm loading content from a PhP file into a div. It loads fine once, but I want it to reload every 5 seconds to show updates to the database. From looking on this site and others this should work fine, but it doesn't.
<div id="Total">
$(document).ready(function(){
setTimeout(function(){
$('#Total').load('points.php');
},5000); });
</div>