particular div refresh in jquery code example
Example 1: How can I refresh a page with jQuery
$('#something').click(function() {
location.reload();
});
Example 2: refresh div jquery
$("#mydiv").load(location.href + " #mydiv");
//this is actualy not so nice but it does the job.