JSFiddle - React, Tailwind, and code Playground

by Santosh Thakur

HTML

<input type="text" value="Where to?" name="asd" onclick="updateFirst(this)">

CSS

input[type=text]::first-letter {
  color: #F00;
}

JavaScript

function updateFirst(event) {
  
  var x = event.value;

 console.dir(x);
 
}