may be the following will work.
jQuery(function($) {
$("a.help").bind('click',
function(){$('.help-popup').hide();$
(this.hash).show();});
});
On Jul 24, 3:28 pm, IschaGast <[EMAIL PROTECTED]> wrote:
> I am busy making something like
> this:http://juicystudio.com/experiments/numbertransfer.php
>
> It is the same but only one thing is different.
> When I click on another help link the other popup should be gone, but
> when clicking back on number one it should be visible again.
>
> I have this page:http://ischagast.nl/help.html
>
> Reproduce bug:
> - Click number 1
> - Click number 2 (this goes ok, number one is gone)
> - Click number 1
>
> There is the bug I something I don't know how to solve.
> I want number 1 to be visible again but it won't show up, only when
> clicking 2 times.
>
> Is it possible to make the help popup show up when clicking and remove
> when clicking on another but it should also be possible to toggle them.