As you may know, there's a flickr script that adds the latest few flickr images to your website. The problem with it is that when you click on an image, it doesn't open it in a new window. I have javascript code that pops up links into new windows if it has a
attached to it. I want to add this class to the code that flickr generates.
Here is what I have, but it doesn't work:
Basically the code on my site looks like this: (I removed unnecessary code just for the illustration)
I want to add a pop class to all the link tags within the flickr div. I'm not even sure if there's anyone here who's experienced with DOM scripting, but I just thought i'd ask.
I guess another solution would be to write a script that pops up any link within the flickr div, but I'm not sure how to do that.
Code:
class="pop"
Here is what I have, but it doesn't work:
Code:
var flickrLinks = document.flickr.getElementsByTagName("a");
for (var i=0; i<flickrLinks.length; i++){
flickrLinks[i].setAttribute("class", "pop");
}
Basically the code on my site looks like this: (I removed unnecessary code just for the illustration)
Code:
<div id="flickr">
<div class="flickr_badge_image">
<a href="#"><img /></a>
</div>
<div class="flickr_badge_image">
<a href="#"><img /></a>
</div>
<div class="flickr_badge_image">
<a href="#"><img /></a>
</div>
...
</div>
I want to add a pop class to all the link tags within the flickr div. I'm not even sure if there's anyone here who's experienced with DOM scripting, but I just thought i'd ask.
I guess another solution would be to write a script that pops up any link within the flickr div, but I'm not sure how to do that.