P
pbd22
Hi.
Trying to figure this one out.
I want to remove all the "b" elements inside the DIV
tags and NOT the SPAN elements.
I have been trying variations on the below code:
var d = document.getElementById("mypfl");
var d_nested = document.getElementByTagName("b");
d.removeChild(d_nested);
but, I haven't been able to remove the "b" elements successfully.
So, below is an example of a link with the surrounding "b" elements:
<div style="padding-top: 0pt; padding-bottom: 0pt;" id="mypfl"
class=""><b style="background-color: rgb(255, 255, 255);"
class="artop"><b style="border-color: rgb(255, 255, 255); background-
color: rgb(255, 255, 255);" class="rel1"></b><b style="border-color:
rgb(255, 255, 255); background-color: rgb(255, 255, 255);"
class="rel2"></b><b style="border-color: rgb(255, 255, 255);
background-color: rgb(255, 255, 255);" class="rel3"></b><b
style="border-color: rgb(255, 255, 255); background-color: rgb(255,
255, 255);" class="rel4"></b></b>
<span style="border-left: 1px solid rgb(255, 255,
255); border-right: 1px solid rgb(255, 255, 255);" id="pfl"
onclick="newclick(this.id)">My Profile</span>
<b style="background-color: rgb(255, 255, 255);"
class="artop"><b style="border-color: rgb(255, 255, 255); background-
color: rgb(255, 255, 255);" class="rel4"></b><b style="border-color:
rgb(255, 255, 255); background-color: rgb(255, 255, 255);"
class="rel3"></b><b style="border-color: rgb(255, 255, 255);
background-color: rgb(255, 255, 255);" class="rel2"></b><b
style="border-color: rgb(255, 255, 255); background-color: rgb(255,
255, 255);" class="rel1"></b></b></div>
Trying to figure this one out.
I want to remove all the "b" elements inside the DIV
tags and NOT the SPAN elements.
I have been trying variations on the below code:
var d = document.getElementById("mypfl");
var d_nested = document.getElementByTagName("b");
d.removeChild(d_nested);
but, I haven't been able to remove the "b" elements successfully.
So, below is an example of a link with the surrounding "b" elements:
<div style="padding-top: 0pt; padding-bottom: 0pt;" id="mypfl"
class=""><b style="background-color: rgb(255, 255, 255);"
class="artop"><b style="border-color: rgb(255, 255, 255); background-
color: rgb(255, 255, 255);" class="rel1"></b><b style="border-color:
rgb(255, 255, 255); background-color: rgb(255, 255, 255);"
class="rel2"></b><b style="border-color: rgb(255, 255, 255);
background-color: rgb(255, 255, 255);" class="rel3"></b><b
style="border-color: rgb(255, 255, 255); background-color: rgb(255,
255, 255);" class="rel4"></b></b>
<span style="border-left: 1px solid rgb(255, 255,
255); border-right: 1px solid rgb(255, 255, 255);" id="pfl"
onclick="newclick(this.id)">My Profile</span>
<b style="background-color: rgb(255, 255, 255);"
class="artop"><b style="border-color: rgb(255, 255, 255); background-
color: rgb(255, 255, 255);" class="rel4"></b><b style="border-color:
rgb(255, 255, 255); background-color: rgb(255, 255, 255);"
class="rel3"></b><b style="border-color: rgb(255, 255, 255);
background-color: rgb(255, 255, 255);" class="rel2"></b><b
style="border-color: rgb(255, 255, 255); background-color: rgb(255,
255, 255);" class="rel1"></b></b></div>