I'm working in a CMS system that is auto generating the html for me. The problem is, it generates alt="Picture" for every image. I don't want a tool tip at all. Is there a way I can get the image tag within the div and remove the tool tip? Every image tag is within a span like so
<span class="bioImage">
<img alt="Picture" title="Picture" src="/Portals/0/staffPics/Angela-Jones,-PT,-ATC.jpg">
</span>
<span class="bioImage">
<img alt="Picture" title="Picture" src="/Portals/0/staffPics/Angela-Jones,-PT,-ATC.jpg">
</span>
<span class="bioImage">
<img alt="Picture" title="Picture" src="/Portals/0/staffPics/Angela-Jones,-PT,-ATC.jpg">
</span>
I already have a class where I can get each one of those span objects, I just need someway to get the image object within there and set the title to "" or disable it. Any ideas? Thanks,