JSFiddle - React, Tailwind, and code Playground

by majidf

HTML

<input id="name"/><br/>
<textarea></textarea>

CSS

textarea {
    width: 350px;
    height: 150px;
}

JavaScript

var t;


$('textarea').text(t);

$('#name').keyup(function() {
    t = "Hello my name is " + $('#name').val() + ", and I would like to join the birthday surprise for <%= get_current_board.bp_name.capitalize %>.\n\n" + "Could you please send me an invitation so that I can participate.\n\nThank you very much. \n\n" + $('#name').val();
    $('textarea').text(t);
});