javascript : location.reload(true)

location.reload() is a method in JavaScript that reloads the current URL, like when you hit the refresh button on your browser. This can be useful if you want to force the browser to reload the page regardless of whether the content has changed or not.

<script>
function reloadPage(){
   location.reload();
}
</script>

<input type="button" onclick="reloadPage()" value="Refresh Page" />

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

Blog at WordPress.com.

%d bloggers like this: