jQuery TOOLS工具提示触发事件

时间:2011-03-14 11:44:32

标签: jquery

我使用jQuery TOOLS中的工具提示。我需要从其他链接触发工具提示,我该怎么办?我有这个:

<a href="#" id="open-tooltip1">1</a><a href="#" id="open-tooltip2">2</a>

<img id="san-paulo" title="San Paulo" class="point" src="img/siti_point.png" />
<img id="madrid" title="Madrid" class="point" src="img/siti_point.png" />

$("#map img[title]").tooltip();

1 个答案:

答案 0 :(得分:1)

只是一个猜测,但也许您只需要为工具提示元素触发mouseover事件?

$("#someLink").click(function() {
    $("#tooltip").mouseover();
});