How to get link inside textarea?

0

In my textarea it has 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 get it using $ ('textarea'). text (); But it just does not come.

    
asked by anonymous 06.01.2018 / 03:51

1 answer

0

Use the value since there is content in your <textarea> ... use match() to return {Array} of parts found according to 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>
    
06.01.2018 / 04:27