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?