vote up 0 vote down star

Hi all,

I have a jQuery script that will display specific divs depending on which select option has been selected.

Here's the code for that:

jQuery.noConflict();
jQuery(document).ready(function() {
  jQuery.viewMap = {
    '' : jQuery([]),
    '1' : jQuery('.company_1'),
    '2' : jQuery('.company_2')
  };
  jQuery('#companyid').change(function() {
    jQuery.each(jQuery.viewMap, function() { this.hide(); });
    jQuery.viewMap[jQuery(this).val()].show();
  });
});

(example div)

<div class="company_1" style="display: none;">
  <input type="checkbox" name="classifications[Miner]" id="classifications[Miner]" /> Spec/Rough
  <input type="checkbox" name="classifications[Dealer]" id="classifications[Dealer]" /> Dealer
</div>

I'd like it to clear all the checkboxes inside the div (.company_1, .company_2 etc) if someone selects a different option. If that makes sense? :)

Thank you!

flag

So you want a radio button instead? – strager Sep 10 at 23:58
2  
FYI, brackets aren't allowed for ids. htmlhelp.com/reference/html40/attrs.html – seth Sep 10 at 23:58
@strager - naw I need checkboxes, users can select multiple answers.. @seth - thanks for the info about the brackets in ids :) – SoulieBaby Sep 11 at 0:00

2 Answers

vote up 4 vote down check

Unchecking a checkbox is achieved by removing the attribute named "checked". Try:

jQuery.each(jQuery.viewMap, function() {
    this.hide();
    jQuery('input:checkbox', this).removeAttr('checked');
});
link|flag
Thanks so much, works perfectly! :) – SoulieBaby Sep 11 at 0:04
vote up 1 vote down

How about:

$("div.company_1 input[type:checkbox]").removeAttr("checked");
link|flag

Your Answer

Get an OpenID
or

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