I am trying to set up a tooltip to show whenever a user enters a table. I have the jQuery initialisation like so:
$(".my_table").tooltip();
My hope is that when someone mouses-over the table, the tooltip appears above the top-middle of the overall table.
However, in reality what is happening is that the trigger event is not being fired on the expected element. Very often what I see is that it is fired on one of the TD elements, so the tooltip appears in seemingly random places across my table.
Is this the correct operation, or is this a bug? Either way, any suggestions how I can work around it?
$(".my_table").tooltip();
My hope is that when someone mouses-over the table, the tooltip appears above the top-middle of the overall table.
However, in reality what is happening is that the trigger event is not being fired on the expected element. Very often what I see is that it is fired on one of the TD elements, so the tooltip appears in seemingly random places across my table.
Is this the correct operation, or is this a bug? Either way, any suggestions how I can work around it?