how to refresh for search onclick using jquery code example
Example 1: how to completely reload page in jquery
// reload page from cache:
location.reload();
// reload page from server:
location.reload(true);
Example 2: refresh page on button click jquery
$('#something').click(function() {
location.reload();
});