// Fix attr('checked'), attr('disabled') and attr('selected') with jquery update #PSCFV-2142

This commit is contained in:
rMalie
2012-05-02 08:29:30 +00:00
parent faea9caafb
commit d0b4e96ab3
17 changed files with 43 additions and 43 deletions
@@ -223,13 +223,13 @@ $('#cart_rule_form').submit(function() {
else
{
$('#' + restrictions[i] + '_select_2 option').each(function(i) {
$(this).attr('selected', 'selected');
$(this).attr('selected', true);
});
}
}
$('.product_rule_toselect option').each(function(i) {
$(this).attr('selected', 'selected');
$(this).attr('selected', true);
});
});