Prikazi cijelu temu 30.05.2016 18:04
zxz Van mreze
Administrator
Registrovan od:03.02.2009
Lokacija:Tuzla


Predmet:Re: web strana pocetok
PreuzmiIzvorni kôd (HTML):
  1. </head>
  2.  Unesi neÅ¡to:
  3.  <input type="text"/>
  4.  <script>    
  5.  
  6. document.getElementsByTagName('input')[0].onkeypress = function(e) {
  7.   e = e || event
  8.   var chr = getChar(e)  
  9.   if (!isNumeric(chr) && chr !== null) {
  10.    return false
  11.  }
  12. }
  13. function isNumeric(val) {
  14.  return val !== "NaN" && (+val)+'' === val + ''
  15. }
  16. function getChar(event) {
  17.  if (event.which == null) {
  18.    return String.fromCharCode(event.keyCode) // IE
  19.  } else if (event.which!=0 && event.charCode!=0) {
  20.    return String.fromCharCode(event.which)  
  21.  } else {
  22.    return null
  23.  }
  24. }
  25. </script>
  26. </body>
  27. </html>

Podrška samo putem foruma, jer samo tako i ostali imaju koristi od toga.