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

Popular posts from this blog

delphi - How to convert bitmaps to video? -

jasper reports - Fixed header in Excel using JasperReports -

python - ('The SQL contains 0 parameter markers, but 50 parameters were supplied', 'HY000') or TypeError: 'tuple' object is not callable -