[jQuery] Trouble referencing an element's id after binding a click event to a set of elements

[jQuery] Trouble referencing an element's id after binding a click event to a set of elements


Hello chaps and chapesses
I have hit a bit of a snag and wondered if you could help me out.
I am using the jHelperTip plugin and am trying to apply a tooltip to
multiple info icons in one hit rather than code each one up
individually.
Here is my code
$(".tooltipContainer .tooltipTrigger").jHelperTip({
trigger: "hover",
topOff: 18,
leftOff: -73,
dC:"#" + $(this).find(".tooltipContent").attr("id"),
autoClose: false
});
The problem is that the content for the first tooltip pops up for each
one.
I'm guessing the $(this) selector is not getting the correct trigger.
What do I need to do?
Cheers
Mart