on reload javascript code example

Example 1: jquery reload page

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

Example 2: how to reload the same page using javascript

BY LOVE
window.location.reload();

Example 3: reload page javascript

window.location.reload();

Example 4: javascript reload page

location.reload();

Example 5: refresh page js

//with no cache
document.location.reload(true);

//else

document.location.reload();

Example 6: refresh javascript

location.reload();
Works like refresh button.