Refresh Window JS
window.location.reload();
Worried Wolf
window.location.reload();
location.reload();
// OR
window.location.reload();
location.reload():
window.location.reload(true);
<script type="text/javascript">
function autoRefreshPage()
{
window.location = window.location.href;
}
setInterval('autoRefreshPage()', 10000);
</script>
$('#thisdiv').load(document.URL + ' #thisdiv');
• Be sure to include a space before the id selector when concatenate.