JS: Disable Space in Text/Password Inputs
$('input.nospace').keydown(function(e) { if (e.keyCode == 32) { return false; } });