You Are Here: Home »   Code Friday September 3rd 2010

Code Library - js

Page Refresh - (1370 views)


<!-- Insert between <head></head> tags -->

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

<!-- button to refresh the page -->

<input type="button" value="Refresh" onclick="refresh()">