vote up 0 vote down star

Hi Guys,

I am testing some jQuery in Chrome/Safari and I just cant seem to solve this error. Basically, I am doing:

jQuery(':radio', '.some_class')
            .change(function() {
                jQuery('.special_class').show();
            })
            .blur(function() {
                jQuery('.special_class').hide();
      });

And I get no love at all ? Even tried

jQuery('.special_class').css('display','none');

And that aint help either - the ".some_class" shows fine but doesn't want to disappear?

Edit: HTML Code is:

<div class="some_class">
    <label for="button"><input type="radio" name="style" id="button" value="button" />Button</label>
</div>

    <div class="special_class">Hello There!</div>

Edit 2: What's even weirder is that when I "tab" - it works? but using "click" it aint?

Any ideas?

flag
What is the HTML that this code is acting on. – MitMaro Aug 2 at 17:20
hey mitmaro - updated for ya – Tom Aug 2 at 17:23

2 Answers

vote up 1 vote down

The blur event doesn't mean "deselected". It means "lost keyboard focus". You will need to add some extra logic to your change event handler to detect whether the radio button was selected or deselected.

link|flag
hey thanks duskwuff - any ideas what can add? – Tom Aug 2 at 17:38
vote up 0 vote down

I think that there is a problem with "blur" event. Look here

Safari and Chrome don’t support these events on links and/or form fields in all circumstances.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.