I have an excell cell with a number of div and img, each with ‘title’ attributes. Like this:
<div title="Title1"><img src="../img.png" alt="" /></div>
<div title="Title2"><img src="../img.png" alt="" /></div>
I disabled tooltips for the cell using enableTooltips(“false”). If I select and view the HTML generated, it is the same as above. If I hover over one of the icons, it would show “Title1”. However, if I leave/hover again, no tooltip is displayed.
If I select and show generated HTML again, my cell is now:
<div title=""><img src="../img.png" alt="" /></div>
<div title="Title2"><img src="../img.png" alt="" /></div>
Something is removing my titles. Any ideas?