tags:

views:

19

answers:

1

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...

+3  A: 

$('textarea.txta').elastic();

it'll apply to all textareas having class txta...

Vaibhav Gupta