Opportunity html
Jump to navigation
Jump to search
| Line 665: | Line 665: | ||
$('select[multiple]').multiselect({selectGroup: true,search: true, | $('select[multiple]').multiselect({selectGroup: true,search: true, | ||
| − | onOptionClick: function(el, option ){ | + | onOptionClick: function(el,option) { |
| − | console.log(option.val()) | + | console.log(option.val()); |
| − | console.log(option.attr('id')) | + | console.log(option.attr('id')); |
| − | $( | + | $('#select_countries > option').each(function() { |
if(this.value == option.val() && this.attr('id') != option.attr('id')) { | if(this.value == option.val() && this.attr('id') != option.attr('id')) { | ||
| − | this.removeAttr( | + | this.removeAttr('selected'); |
} | } | ||
}); | }); | ||
Revision as of 14:39, 8 March 2020