Я хочу применить плагин jquery tooltip с веб-сайта jQuery Tools
(http://flowplayer.org/tools/tooltip/index.html) к некоторым элементам, загруженным ajax на моей странице.
Я знаю, что методы делегата (0 и live () используются для применения событий к элементам, загруженным ajax, но я не знаю, как применить плагин к таким элементам.
код:
$("#mytable img").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 } });
кто-нибудь мне поможет?
спасибо.