I know this is an old one...
but still...
min
mind sharing the code?
thanks ahead,
Daniel
but still...
min
mind sharing the code?
thanks ahead,
Daniel
| Registered | Jun 2, 2011 |
| Last login | Jun 5, 2011 |
| Forum posts | 2 |
| Direct URL | http://www.flowplayer.org/forum/users/92483 |
$("#widgetTableID").delegate("tbody td", "mouseenter", function() {
$(this).tooltip({
// each trashcan image works as a trigger
tip: '#tooltip',
// custom positioning
position: 'center right',
// move tooltip a little bit to the right
offset: [0, 15],
// there is no delay when the mouse is moved away from the trigger
delay: 0,
onBeforeShow: function(event, position){
this.getTrigger().parent().css('z-index','9999');
},
onHide: function(){
this.getTrigger().parent().css('z-index','1');
}
});
});
here is the not working way(but suggested by the tooltip example
$("#widgetTableID tbody td").tooltip({
// each trashcan image works as a trigger
tip: '#tooltip',
// custom positioning
position: 'center right',
// move tooltip a little bit to the right
offset: [0, 15],
// there is no delay when the mouse is moved away from the trigger
delay: 0,
onBeforeShow: function(event, position){
this.getTrigger().parent().css('z-index','9999');
},
onHide: function(){
this.getTrigger().parent().css('z-index','1');
}
});
$("#widgetTableID tbody td").tooltip({
does not work?