Jquery Tooltip does not work -
i'm trying build table form database (the table content updated every x seconds)
now want tooltip each table row more information (additional ajax query) users.
there tablerows 123_tr class.
$("body").tooltip({ selector: '.123_tr', items: "123_tr", track: true, content: function() { var element = $( ); return "123"; } }); i hover mouse on table row, inspector shows me changing attribute of tr, no tooltip visible.
Comments
Post a Comment