How to get link inside the textarea?

Asked

Viewed 63 times

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

1 answer

0


Use the value since there is content in your <textarea>... use match() to return a {Array} of parties found in accordance with the search condition.

let msg = $('#x').val()

let subStr = msg.match("src='(.*)'");

console.log(subStr[1])
textarea {
  position: absolute;
  width: 100%;
  height: 100px
}
<textarea id="x">
   <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 />
</textarea>



<script
  src="https://code.jquery.com/jquery-3.2.1.min.js"
  integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
  crossorigin="anonymous"></script>

Browser other questions tagged

You are not signed in. Login or sign up in order to post.