Swell
Swell

Reputation: 139

Tipsy Tooltip Direction Problem

I use Tipsy Tool time plugin I noticed that I cant use the same direction of the tooltip with another link.

Example:

javascript:

$('#south').tipsy({gravity: 's'});

html:

<a id='south' href='#' title='This is an example of south direction'>South</a>
<a id='south' href='#' title='This is an example of south direction2'>South</a>

Explain the example:

Link1 - link2

when I hover link1 the tooltip shows at the top, I want also when I hover link2 the tooltip shows at the top,

But unfortunately did not work with me!

So can any one help me.

thank you

Upvotes: 0

Views: 872

Answers (1)

Nick Craver
Nick Craver

Reputation: 630389

You can't repeat IDs like this, they have to be unique in a page (otherwise you'll see side-effects, like $('#south') only returning the first match...your current issue). Use a class instead in these cases, like this:

$('.south').tipsy({gravity: 's'});

The same on the links;

<a class='south' href='#' title='This is an example of south direction'>South</a>
<a class='south' href='#' title='This is an example of south direction2'>South</a>

Upvotes: 1

Related Questions