0
In my textarea there is this:
<Sua IMAGEM ESTÁ AQUI NÃO APAGUE ESTE CODIGO><img src='exemplo/imagens/exemplo.png' width=200; height:200; /><Sua IMAGEM ESTÁ AQUI NÃO APAGUE ESTE CODIGO />
And through jquery I want to pick up using $('textarea'). text(); But nothing is coming.
Utilize
$('textarea').val();
to capture the value oftextarea
.– Valdeir Psr