JQuery simulate Hover event on another div / Trigger Tooltip by multiple triggers -
my goal trigger tooltip within map area hovering in list next map. tooltips should therefore appear in map , not in list.
also, hovering on map should trigger tooltip.
example: have map of city , want dots on map explained tooltip - xy's restaurant, xy park, xy museum. hovering on dots should trigger tooltip, hovering in list.
i used plugin: http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/
hovering on map works charm, cannot tooltips appear when hovering on list. think doesn't work because uses mouse position calculate tooltip position.
at moment use
$(function() { $("a.tooltip").tooltip({ positionleft: true }); }); </script>
for map part:
<a class="tooltip" target="_blank" title="area-tooltip 1" href="xy"></a>
but don't know how let "area-tooltip 1" tooltip appear on map trigger (list)
<a class="tooltiplist" href="xy" target="_blank">listelement1</a>
hovering on class "tooltiplist" should fire class "tooltip" tooltip @ position of class "tooltip".
Comments
Post a Comment