JSFiddle - React, Tailwind, and code Playground
by hollandben
HTML
<textarea></textarea>
CSS
textarea {
height:200px;
width:200px;
}
JavaScript
$(document).ready(function(){
var textColor = "000000";
var numColor = "0000FF";
$('textarea').mouseout(function(e){
//if(e.keyCode == 32){
var text = $('textarea').val();
var list = text.split(/\s$/);
console.log(list);
//}
});
});
[A-Za-z0-9]
[0-9]