JSFiddle - React, Tailwind, and code Playground
by Luke Marlow
HTML
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js"></script>
<textarea class="test">-
--
---
----
-----
------
-------
--------
---------
----------
-
--
---
----
-----
------
-------
--------
---------
----------
-
--
---
----
-----
------
-------
--------
---------
----------</textarea>
CSS
.test{
height:500px;
width: 200px;
}
JavaScript
$('.test').keyup(function() {
var contents = $(this).val();
});