I have a form with 2 divs that each contains a set of fields.
I would like to do something like this:
$(document).ready( function(){
$(".sectionBox").click( function(){
$(this).removeClass('dim');
$(".sectionBox").not(this).addClass('dim')
});
});
This works very nicely if the user clicks the div itself or an <input> field. But, it does not work if the user clicks a <select> field - the drop-down appears and my div doesn't respond at all. How can I ensure they respond:
- for select boxes? (required)
- for everything? (preferable)
Thanks a lot!
Clarification
Guys, thanks a lot for your responses thus far. I want to simply add .dim to the container div if the div itself or anything inside that div is clicked/focussed on. @LiangliangZheng and @wdm - your solutions seem to add .dim to multiple elements (I just want the container div).
This is where I am at the moment:
$(".sectionBox").click( function(){
$(this).removeClass('dim');
$(".sectionBox").not(this).addClass('dim');
});
$("select").focus( function(){
$(".sectionBox").addClass('dim');
$(this).parent(".sectionBox").removeClass('dim');
});
This appears to work. Is there anything I should do to make the above more robust?