refreshing page without reloading on button click jquery code example
Example: page refresh jquery on click
$('#something').click(function() {
location.reload();
});
$('#something').click(function() {
location.reload();
});