jlittlejohn
5/16/2016 - 3:44 PM

JS: Disable Space in Text/Password Inputs

JS: Disable Space in Text/Password Inputs

$('input.nospace').keydown(function(e) {
	if (e.keyCode == 32) {
		return false;
	}
});