It appears you have not yet registered with DEVPPL. To register please click here... (it's fast, easy and free!)

News

Log In Sponsors
Partner Sites

Re: Need help with window open and refreshing



If you wish to reload the page on every second, you could use the "meta refresh tag".

For disabling the F5 key, you might find this code useful:
[code:34gvbmn4]
<script type="text/javascript">
function checkKeyCode(evt) {
var evt = (evt) ? evt : ((event) ? event : null);
if(evt.keyCode==116) {
evt.preventDefault();
return false
}
}
document.onkeydown=checkKeyCode;
</script>
[/code:34gvbmn4]

Click here to read the whole forum topic