Guest User

Untitled

a guest
Mar 13th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function handlePressold(a, e) {
  2.     var key = 0;
  3.     if (document.all)
  4.         key = window.event.keyCode;
  5.     else
  6.         key = e.which;
  7.  
  8.     if (key == 13) {
  9.         if (document.all)
  10.             window.event.returnValue = false;
  11.         else
  12.             window.event.returnValue = false;
  13.             location.href="podrocje.aspx?id=91&q=" + a.value;
  14.     }
  15.  
  16.     return true;
  17. }
Add Comment
Please, Sign In to add comment