Automatic add space if user enters number(any digit)
This kind of questions is better asked on StackOverflow community. Maybe this JS hack would help: var elem = document.querySelector(‘.search-form input[name=”search_keywords”]’); if ( null !== elem ) { elem.onchange = function() { var e = this , v = e.value; if ( ! v ) return; v = v.toString(); if ( 0 === v.indexOf(0) ) … Read more