reload to another page jquery code example
Example 1: jquery reload page
$('#myElement').click(function() {
location.reload();
});
Example 2: How can I refresh a page with jQuery
$('#something').click(function() {
location.reload();
});
Example 3: jquery redirect to url
$(location).attr('href', 'https://google.com');