By default, when we press a space bar key over document
it scrolls down. To prevent the default behaviour, we could do the following :
$(document).keypress(function(event) {
event.preventDefault();
});
But we cannot do the above, when we have certain input fields, for it will not allow us to type into the text fields.
How could I prevent the default action of space bar, without infringing the rights of others!