Hi All,
I want to change the f5 property to html tag(i.e., <input type='file'>) for I.E.7.0 version and above. but its not working.
Here the code is working in only in <input type='text'> but not working to <input type='file'>
<html>
<head>
<script>
document.onkeydown = function(){
if(window.event && window.event.keyCode == 116)
{
window.event.returnValue = false;
window.event.cancelBubble = true;
window.event.keyCode = 505;
}
if(window.event && window.event.keyCode == 505)
{ alert('F5 key was pressed');
return false;
}
}
</script>
</head>
<body >
<table>
<tr>
<td><input type='file' id='file1' name='file1' ></td>
</tr>
<tr>
<td><input type='text' id='text1' name='text1' ></td>
</tr>
</table>
</body>
</html>