Use the function below to add CSS classes (blue, red, pink ...) in a ".container" DIV from a select "#selcolor". Is it possible for me to use this same function in other select tags with different IDs? In this case the classes (blue, red, pink ...) would not be added in the ".container" DIV, ie the "div_action" variable of the function would have to be modified.
function select_changed() {
jQuery('select#selcolor').each(function() {
var selected = jQuery(this).val();
var div_action = '.container';
if(selected == '') {
jQuery(div_action).addClass('');
}
if(selected == 'blue') {
jQuery(div_action).addClass('blue');
} else {
jQuery(div_action).removeClass('blue');
}
if(selected == 'pink') {
jQuery(div_action).addClass('pink');
} else {
jQuery(div_action).removeClass('pink');
};
if(selected == 'red') {
jQuery(div_action).addClass('red');
} else {
jQuery(div_action).removeClass('red');
};
});
}
$('select#selcolor').change(function() {
select_changed();
});