Not allowing to write spaces in input using Javascript - HTML CSS CSS Form

HTML CSS examples for CSS Form:input

Description

Not allowing to write spaces in input using Javascript

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> 
  <script type="text/javascript">
    $(window).load(function(){<!--from ww  w  .j av  a 2s  . c om-->
$("input").on("keydown", function (e) {
    return e.which !== 32;
});
    });

      </script> 
 </head> 
 <body> 
  <input>  
 </body>
</html>

Related Tutorials