Thanks...this did the trick:
$('a[rel^="shadowbox"]').each(
function(){
var linkRel = $(this).attr('rel');
var linkTitle = $(this).attr('title');
$(this).attr('rel', linkRel + "title=" + linkTitle);
});
On Mar 10, 1:46 pm, BB <[email protected]> wrote:
> Hiroryreiff,
>
> maybe you store the title-attribut from the current element in a
> variable and add it when the tooltip hides.
>
> If this doesn't work try to set the title in the rel-attribut:
> rel="shadowbox;title='Hallo'"
>
> On 10 Mrz., 18:25,roryreiff<[email protected]> wrote:
>
> > Hi there,
>
> > I am using the tooltip plugin successfully, though I have run into a
> > problem in that I have another plugin, Shadowbox, that needs to access
> > the title attributes that tooltip if blasting away. Is there any way
> > to make the tooltip variable 'tooltipText' global such that I can call
> > it from my Shadowbox plugin as well? Conceptually speaking, how can
> > this be approached. Any recommendations on how to accomplish this?
> > Thanks,
>
> > Here is the page in question:http://www.pomona.edu/dev/web44.asp