How to Refresh the Page using jQuery?

Below is a sample sourecode snippet that demonstrates how to reload the page using jQuery.

How to Refresh the Page using jQuery?

$('#button1').click(function() {

location.reload(true);

});