I want to change or replace code <img src>
on textarea to images URLs when click the button.
<textarea>
<img src="https://example.com/image1.gif" alt="image1" /></a>
<img src="https://example.com/image2.gif" alt="image2" /></a>
<img src="https://example.com/image3.gif" alt="image3" /></a>
</textarea>
<input type="submit" id="Button" value="Submit" />
the result should be
<textarea>
https://example.com/image1.gif
https://example.com/image2.gif
https://example.com/image3.gif
</textarea>
What can I do to change the <img>
to image URLs when click.