Guest User

Untitled

a guest
May 20th, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. jQuery(document).ready(function(){
  3.   jQuery("#kod_klient").focus();
  4.   jQuery("#btnSubmit").bind("keypress", function(event){
  5.     if (event != null){
  6.       if (event.keyCode == 9){
  7.         jQuery("#kod_klient").focus();
  8.         return false;
  9.       }
  10.     }
  11.   });
  12. });
  13. </script>
Add Comment
Please, Sign In to add comment