Я написал этот код, чтобы применить плагин jQuery Tooltip к элементам, загруженным ajax.
Я имею в виду, что строка, которую я хочу показать при наведении курсора, загружается на страницу с помощью ajax.
вот код:
$("[id^=pane]").delegate("[id^=comm]","mouseover",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
}).dynamic({ bottom: { direction: "down", bounce: true } });
});
всплывающая подсказка отображается при наведении мыши, но firebug сообщает об этой ошибке:
"$ (this) .tooltip ({tip:" #tooltip ", позиция:" center right ", смещение: [0, 15], delay: 0}). Dynamic не является функцией"
это из-за использования $ (this) ???