JSFiddle - React, Tailwind, and code Playground

by ian_smithz

HTML

Name<input id="name" type="text" name="name" /> <br />
Besked<input id="message" type="text" name="message" /> <br /> 
Number<input id="number" type="text" name="number" /> <br /> 

<div id="output-content-here">
	
</div>

CSS

#output-content-here {
	background: #eee;
	color: black;
	margin-top:20px;
	padding: 15px;
}

JavaScript

var $output = $('#output-content-here');

$('input').keyup( function() {
    $($output).html($('input').map(function(){
        return this.value + ((this.value.length)?"<br>":"");
    }).get().join(''));
});