I am trying to refresh a certain div within a bunch of divs. The div content is basically generated by PHP alon
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 this case #here:
function updateDiv()
{
$( "#here" ).load(window.location.href + " #here" );
}
This function can be called within an interval, or attached to a click event