summaryrefslogtreecommitdiff
path: root/misc/form.js
blob: 8631ed68c81b3be762f3085777deb0e99c26d820 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// $Id$
(function($) {

Drupal.behaviors.multiselectSelector = {
  attach: function(context) {
    // Automatically selects the right radio button in a multiselect control.
    $('.multiselect select:not(.multiselectSelector-processed)', context)
      .addClass('multiselectSelector-processed').change(function() {
        $('.multiselect input:radio[value="'+ this.id.substr(5) +'"]')
          .attr('checked', true);
    });
  }
};

})(jQuery);