add target="_blank" to all link with a certain a div.
- by kakkalo
so lets say i got these following codes
<div id="link_other"> <ul> <li><a href="http://www.google.com/">google</a></li> <li><div class="some_class">dsalkfnm sladkfm <a href="http://www.yahoo.com/">yahoo</a></div> </li> </ul> </div>
so in this case script will add target="_blank" to all links within "link_other" div.
how can i do that?
thank you