To reload a section of the page, you could use jquerys load
with the current url and specify the fragment you need, which would be the same element that load
is called on, in our below case #myDivId
function updateDivContent() { $("#myDivId").load(window.location.href + " #myDivId" ); }