JSFiddle - React, Tailwind, and code Playground
HTML
<input id='cName'>
JavaScript
document.getElementById('cName').addEventListener('input', function (){
if(this.value.match(' '))
alert('space');
});
<input id='cName'>
document.getElementById('cName').addEventListener('input', function (){
if(this.value.match(' '))
alert('space');
});