vote up 2 vote down star
3

I have a bit of html like so:

<a href="#somthing" id="a1"><img src="something" /></a>
<a href="#somthing" id="a2"><img src="something" /></a>

I need to strip off the links so I'm just left with a couple of image tags. What would be the most efficient way to do this with jQuery?

flag

3 Answers

vote up 6 vote down check
$("a > img").parent()   // match all <a><img></a>, select <a> parents
   .each( function()    // for each link
   { 
      $(this).replaceWith(              // replace the <a>
         $(this).children().remove() ); // with its detached children.
   });
link|flag
If there are any siblings to the image then this will copy them as well. You may want to use $(this).children("img").remove() instead. – Sugendran Oct 9 '08 at 2:51
@Sugendran: true. – Shog9 Oct 9 '08 at 3:32
There don't happen to be any siblings. But that is a good point. – defrex Oct 9 '08 at 7:17
vote up 2 vote down

This should do it:

$('a[id^=a]').each(function() { $(this).replaceWith($(this).html()); });
link|flag
vote up -1 vote down

Ain''t got any idea of how a jQuery code would be, but in plain javascript it would be something like:

<script type="text/javascript">
window.onload = function(){
  var l = document.getElementsByTagName("a");
  for(i=0, im=l.length; im>i; i++){
    if(l[i].firstChild.tagName == "img"){
      l[i].parentNode.replaceChild(l[i].firstChild,l[i]);
    }
  }
}
</script>
link|flag
jQuery is being used today to elegantly replace peaces of code like your propose here. Thanks anyway! – Alexander Prokofyev Oct 9 '08 at 5:45
Seriously, this snippet just shows the elegance of jQuery. This code and the code by Shog9 are exactly the same but, one is smaller and so much neater to read. Though, this code will perfectly do the job too! – Adhip Gupta Oct 9 '08 at 6:22
Elegantly -- yes it looks rather neat, but inside jQuery it's much larger, so if you ain't got other reasons to engage a huge library, use this. But of course, defrex asked for a jQuery-thing and this isn't !-) – roenving Oct 9 '08 at 6:49
Perhaps this is bad of me, but I've gotten so used to jquery (and libraries like it) that I can't even imagine trying to code in raw js again. I think my users can handle the overhead. – defrex Oct 9 '08 at 7:22

Your Answer

Get an OpenID
or

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