[jQuery] Re: [tooltip] Blocking tooltips

2009-05-28 Thread Jörn Zaefferer
Probably not documented - but supposed to be part of the public API, otherwise the demo wouldn't cover it. Jörn On Thu, May 28, 2009 at 4:58 PM, fredriley wrote: > > Ah, that makes sense. Thanks, Jörn. I suppose I'd have stumbled across > that solution eventually, but I really wanted to know *w

[jQuery] Re: [tooltip] Blocking tooltips

2009-05-28 Thread fredriley
Ah, that makes sense. Thanks, Jörn. I suppose I'd have stumbled across that solution eventually, but I really wanted to know *why* it wasn't working, which you've now explained. I had a look in the plugin docs for block() but couldn't see it mentioned. Is it an 'undocumented feature', or have I n

[jQuery] Re: [tooltip] Blocking tooltips

2009-05-28 Thread Jörn Zaefferer
In the quoted example, the block function is passed as the event handler. In your example, you just reference, but don't call it. Easy to fix: $("#block").click(function() { $.tooltip.block(); aler