using jquery to refresh a page code example
Example 1: How can I refresh a page with jQuery
$('#something').click(function() {
location.reload();
});
Example 2: how to completely reload page in jquery
// reload page from cache:
location.reload();
// reload page from server:
location.reload(true);