i need one thing to know and learn.
$(document).ready(function() {
$('.changetext').click(function() {
$('.textarea').html('TEXT');
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button class="changetext">click me</button>
<div class="textarea"></div>
This function add TEXT to my text area. But i need it run many times i click it. I'm want it add TEXT each time i click, Right now it works only once, second time i click no effect. Advice please.