$(document).ready(function() { $(function() {    $('input[type=text]').focus(function() {	 $(this).select();	  }); }); $(document).keydown(function(e) {     if (e.which == 116) // key code of the F5 button     {         document.location.reload(); 		return false;      } }); });
