9 lines
197 B
JavaScript
9 lines
197 B
JavaScript
|
jQuery(function() {
|
||
|
jQuery("#switcher_zen select")
|
||
|
.change(function(){
|
||
|
jQuery(this).parents('form').get(0).submit();
|
||
|
})
|
||
|
.val(theme_selected)
|
||
|
.siblings("input[type=submit]").hide();
|
||
|
});
|