Quantcast
Channel: What's the best way to strip out only the anchor HTML tags in javascript, given a string of html? - Stack Overflow
Browsing latest articles
Browse All 5 View Live

Answer by user113716 for What's the best way to strip out only the anchor...

Here's a native (non-library) solution if performance is a concern.function stripTag(str, tag) { var a, parent, div = document.createElement('div'); div.innerHTML = str; a = div.getElementsByTagName(...

View Article


Answer by eyelidlessness for What's the best way to strip out only the anchor...

This approach will preserve existing DOM nodes, minimizing side-effects if you have elements within the anchors that have events attached to them.function unwrapAnchors() { if(!('tagName' in this) ||...

View Article


Answer by SLaks for What's the best way to strip out only the anchor HTML...

Using jQuery:var content = $('<div>'+ htmlString +'</div>');content.find('a').replaceWith(function() { return this.childNodes; });var newHtml = content.html();Adding a wrapping <div>...

View Article

Answer by Pik' for What's the best way to strip out only the anchor HTML tags...

A <a> tag is not supposed to hold any other <a> tag, so a simple ungreedy regexp would do the trick (i.e. string.match(/<a>(.*?)<\/a>/), but this example suppose the tags have...

View Article

What's the best way to strip out only the anchor HTML tags in javascript,...

Let's say there's a string of HTML, with script tags, plain text, whatever.What's the best way to strip out only the <a> tags?I've been using some methods here, but these are for all tags. Strip...

View Article

Browsing latest articles
Browse All 5 View Live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>