I'm desperately trying to implement the jquery tooltip on some jqgrid cell. I formatted the the cell to have their own title like this:
<td role="gridcell" style="" title="Toto, Tata" aria-describedby="MyTaskUserView_TaxpayerName">
<span class="fullCellSpan customTooltip" title="123456" originalvalue="Toto Tata">Toto Tata</span>
</td>
I tried to call the tooltip on my span containing the title:
$("td span.customTooltip").tooltip();
And I don't understand why it's not working.
If I call it like this
$(document).tooltip();
it will work but then it will apply the tooltip on every element that have a title element which is not what I want.
It's like it didn't recognize the html path I'm giving which I don't understand.
Thanks in advance for your help