I have a javascript that displays a generated text into a div:
document.getElementById('phrase').innerHTML = phrase;
PHRASE_TEXT_GETS_SHOWN_HERE
Basically I'm trying to set up a link that will ...
I have in my html page: <a href="link">some text</a>
How can I do it in JavaScript to find the value of A tag as "some text" and remove all the a tag ...