I have a basic questions with jQuery.
I acutally want to change the "a" tag within a Textarea. I know that "a" tags aren't functioning within a textarea so I can not target them using jQuery selectors.
Example:
<textarea><a href="http://www.google.com"></a></textarea>
I want to change into this:
<textarea><a href="http://www.stackoverflow.com"></a></textarea>
Is there any basic solution for this matter?
EDIT: I forgot to mention that the first link (http://www.google.com) is not a static link. It will always be changing. So I'd need an ultimate solution.