i am generating multiple textareas with php with id i.e
<textarea id="here php generated id" class="txta">
now i want to apply jquery elastic to each of these textareas...
i am generating multiple textareas with php with id i.e
<textarea id="here php generated id" class="txta">
now i want to apply jquery elastic to each of these textareas...
$('textarea.txta').elastic();
it'll apply to all textareas having class txta...