boutique replica bags up ideas

the best replique rolex and prices here.

julia highlight 99j hair color 10a quality straight human hair lace front wigs 8 - 24 inches pre plucked hairline 13x4 inches lace front brazilian wig onlinefor sale

How to Refresh page using javascript?

Updated on     Kisan Patel

This tutorial will show you how to refresh the current page using JavaScript?

You can use location.reload() method to reloads the current page.

Syntax:

location.reload(forcedReload);

Here, By default, the location.reload() method reloads the page from the cache. so you need to reload the page from server by using forcedReload parameter like below:

location.reload(true);

Example:

<script type="text/javascript">
document.write(new Date());

function ReloadPage(){
   // Reload the current page, without using the cache
   document.location.reload(true);
}
</script>

<input type="button" onclick="ReloadPage()" />

JavaScript

Leave a Reply