change f5 keyCode to <input type='file'>

Reply

Join Date: Nov 2007
Posts: 19
Reputation: smilyswapna10 is an unknown quantity at this point 
Solved Threads: 0
smilyswapna10 smilyswapna10 is offline Offline
Newbie Poster

change f5 keyCode to <input type='file'>

 
0
  #1
Jan 9th, 2008
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>
Reply With Quote Quick reply to this message  
Join Date: Apr 2007
Posts: 439
Reputation: Fungus1487 is on a distinguished road 
Solved Threads: 50
Fungus1487's Avatar
Fungus1487 Fungus1487 is offline Offline
Posting Pro in Training

Re: change f5 keyCode to <input type='file'>

 
0
  #2
Jan 9th, 2008
you need to post this in the javascript forum
When Autumn Falls [ http://www.whenautumnfalls.co.uk ] &&
Designdotworks [ http://www.designdotworks.co.uk ] Web / Graphic / Software Design
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Other Threads in the PHP Forum


Views: 1598 | Replies: 1
Thread Tools Search this Thread



Tag cloud for PHP
About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC