location reload jquery code example

Example 1: refresh window js

window.location.reload();

Example 2: jquery reload page

$('#myElement').click(function() {
    location.reload();
});

Example 3: how to reload the same page using javascript

BY LOVE
window.location.reload();

Example 4: How can I refresh a page with jQuery

$('#something').click(function() {
    location.reload();
});

Example 5: how to completely reload page in jquery

// reload page from cache:
location.reload();
// reload page from server:
location.reload(true);

Example 6: reload page jquery

location.reload();

Tags:

Html Example