I'm using tooltips on a file list.

When I delete a file (and it's DOM structure representation) that has
a tooltip I'm getting an error at line 232.

"setting(current) is undefined"

 if (event) {
231 // position the helper 15 pixel to bottom right, starting from
mouse position
232 left = event.pageX + settings(current).left;
233 top = event.pageY + settings(current).top;
234 var right='auto';
235 if (settings(current).positionLeft) {
236 right = $(window).width() - left;
237 left = 'auto';
238 }
239 helper.parent.css({
240 left: left,
241 right: right,
242 top: top
243 });
244 }

Is there any way to destroy the tooltip when I remove the DOM element
that has the tooltip?

Thanks,
-ml

Reply via email to