assuming your hover links also have a class name like "tip", and your
JSON is set like a proper variable named, say, "allTolltips", it
probably will look something like this:

$('.tip').hover(
   function(){
      if( allTooltips.items.id) == $(this).attr('id') )
{showToolTip();}
   },
   function(){
      hideTooltip();
});

Reply via email to