I need to restrict/disable end-user to enter space in the input field or text-box field. Currently I am using this code but it's not working properly.
function keyPress(e) {
var e = window.event || e;
var key = e.keyCode;
//space pressed
if (key == 32) { //space
return;
}
}