JSFiddle - React, Tailwind, and code Playground

HTML

<input id='cName'>

JavaScript

document.getElementById('cName').addEventListener('input', function (){
    if(this.value.match(' '))
        alert('space');
});