vote up 0 vote down star

I have a link:

<a id="theLink" href="h***://stackoverflow.com">Go to SO</a>

How can I use prototype to either strip <a>'s or just leave the innerHTML so that the elements becomes:

[h***://stackoverflow.com] (something that is no longer clickable)?

Or maybe convert the <a> to a <span>

flag

3 Answers

vote up 1 vote down

try this

function removeAnchor() {
        var link = document.getElementById('theLink');
        var span = document.createElement("span");
        var txt = link.href;
        var textNode= document.createTextNode(txt);
        span.appendChild(textNode);
        link.parentNode.replaceChild(span, link);
}
link|flag
vote up 0 vote down

onclick="return false;"

link|flag
vote up 0 vote down

To replace the <a> with a <span> with the initial element's href as content:

$('theLink').replace((new Element('span')).update($('theLink').href));

The result will be:

<span>h***://stackoverflow.com</span>

To replace the with a with the same content:

$('theLink').replace((new Element('span')).update($('theLink').innerHTML));

Which will result:

<span>Go to SO</span>
link|flag
i think he want something pure javascript (without jquery) – TeKapa Nov 17 at 14:32
He said "How can I use prototype...". He means the Prototype JavaScript framework, and that's what my example uses. – Victor Stanciu Nov 18 at 19:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.