I am trying to remove the span from the site which does not have class or id because i can not add class or id to that span because the HTML code coming through iframe
i used the below code in css
span {display:none; }
but it hide all the span
i have the below HTML code in which i have to remove span either by css or JQuery or any other method
<div align="center" style="font-family:verdana; color:#666666; font-size:7pt; "><span class="xxxx">Content1</span> <span style="display:block; visibility:visible; position:static;">Content2</span></div>
I have to remove the Div and span those do not have class or Id
How can i do this ?