Predmet:Re: web strana pocetok
PreuzmiIzvorni kôd (HTML):
Unesi nešto:
document.getElementsByTagName('input')[0].onkeypress = function(e) {
e = e || event
var chr = getChar(e)
if (!isNumeric(chr) && chr !== null) {
return false
}
}
function isNumeric(val) {
return val !== "NaN" && (+val)+'' === val + ''
}
function getChar(event) {
if (event.which == null) {
return String.fromCharCode(event.keyCode) // IE
} else if (event.which!=0 && event.charCode!=0) {
return String.fromCharCode(event.which)
} else {
return null
}
}
</script>
</body>
</html>
Podrska samo putem foruma, jer samo tako i ostali imaju koristi od toga.