jQuery
Prevent Space in the input field
Html input tag
<input type='text' name="users" />
Simply add this line of code into your HTML pages scripts
$('input').keypress(function( e ) { if(e.which === 32) return false; });
Html input tag
<input type='text' name="users" />
Simply add this line of code into your HTML pages scripts
$('input').keypress(function( e ) { if(e.which === 32) return false; });
Don't think too much let's begin.