we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
showing results for - "java script how to not allow soace"
Noémie
17 Apr 2019
1 $(function() {
2        $('#input1').on('keypress', function(e) {
3            if (e.which == 32){
4                console.log('Space Detected');
5                return false;
6            }
7        });
8});