Tip: Refreshing page with Javascript

Do you know that location.reload() method reloads the curret page and can be used refesh content. Below is the function you can call to reload the current page.

<script language="javascript"> 
	function refreshMe(){
		location.reload();
	}
 </script>

 

More Javascript tips