Prevent F5 on web
How many times have you struggled that user shuld not be able to hit F5 key on your web application?… many times? IE and chrome are ok to prevent it but firefox has a odd behaviour… <!– disable f5 –> <script language="javascript" type="text/javascript"> document.onkeydown = function (ev) { //firefox if (ev) if (ev.keyCode == 116)

