JSFiddle - React, Tailwind, and code Playground

by fiddleyetu

HTML

<textarea style="text-decoration:underline;" rows="20" cols="30" id="text">All are Welcome!!</textarea>

JavaScript

$("document").ready(function() {
    $("#text").val($("#text").text());
    $('textarea').keypress(function(e) {
          $(this).css('text-decoration','none');
    });
});