$('#ComboBox').prop('value', '2');
function selectByText (text) {
var $sel = $('#ComboBox'),
$options = $sel.find('option'),
value;
$options.each(function () {
var $this = $(this),
txt = $this.text();
value = $this.prop('value');
if (txt === text) {
$sel.prop('value', value);
return false;
}
});
}
selectByText('Text 2'); // выбираем по тексту
.theme_1 .header {background: #000;}
.theme_1 .button {background: #000;}
.theme_1 .link {color: #000;}
.theme_2 .header {background: #f00;}
.theme_2 .button {background: #f00;}
.theme_2 .link {color: #f00;}
<html class='theme_1'>
...
</html>
<button class='js-switch-theme' data-name='theme_2'>Swich to theme 2</button>
$(document).on('click', '.js-switch-theme', function () {
var theme = $(this).data('name'),
$html = $('html');
$html.removeClass();
$html.addClass(theme);
});
var conf = window.confirm('Удалить?');
console.log(conf); // true, если ок. false, если отмена
if (conf) {
// удаляем
} else {
// не удаляем
}
// UPD.
// если же у вас диалоговое окно не стандартное,
// то вы не можете просто вернуть значение, так как оно будет асинхронным.
// В этом случае вы должны вызывать нужную функцию напрямую. Вот так:
function myDeleteFunction () {
// тут удаляем
}
function myCancelFunction () {
// тут отмена
}
$(document).сonfirm({
message: 'Удалить?',
callbackY: myDeleteFunction,
callbackN: myCancelFunction
});