// Функция парсящая адресную строку на ключи
var getUrlParameter = function getUrlParameter(sParam) {
var sPageURL = decodeURIComponent(window.location.search.substring(1)),
sURLVariables = sPageURL.split('&'),
sParameterName,
i;
for (i = 0; i < sURLVariables.length; i++) {
sParameterName = sURLVariables[i].split('=');
if (sParameterName[0] === sParam) {
return sParameterName[1] === undefined ? true : sParameterName[1];
}
}
};
// Добавляем в переменную foo значение ключа query из адресной строки, т.е./?query=значение
var foo = getUrlParameter(‘query’);
// если значение query=true, меняем класс
if (foo === "true") {
$(element).toggleClass('class');
}
var getUrlParameter = function getUrlParameter(sParam) {
var sPageURL = decodeURIComponent(window.location.search.substring(1)),
sURLVariables = sPageURL.split('&'),
sParameterName,
i;
for (i = 0; i < sURLVariables.length; i++) {
sParameterName = sURLVariables[i].split('=');
if (sParameterName[0] === sParam) {
return sParameterName[1] === undefined ? true : sParameterName[1];
}
}
};
var stol = getUrlParameter('stol');
$("ваш-элемент").addClass("ваш-класс-для-добавления");
$("ваш-элемент").removeClass("класс-для-удаления")
if (h >= v) {
$('.option_short').addClass('active').next('.option_detail').stop().slideDown(300);
$(this).text('Свернуть все');
} else {
$('.option_short').removeClass('active').next('.option_detail').stop().slideUp(300);
$(this).text('Развернуть все');
};
в условии стоит не строгое неравенство и когда 2 = 2 у вас все блоки раскрываются.var hideAll = false;
$('.option_view-all').on('click', function(){
var h = $('.option_short').next('.option_detail:hidden').length;
console.log('hidden = ' + h);
var v = $('.option_short').next('.option_detail:visible').length;
console.log('visible = ' + v);
console.log(hideAll);
if (!hideAll) {
$('.option_short').addClass('active').next('.option_detail').stop().slideDown(300);
$(this).text('Свернуть все');
hideAll = true;
} else {
$('.option_short').removeClass('active').next('.option_detail').stop().slideUp(300);
$(this).text('Развернуть все');
hideAll = false;
};
return false;
});
$('.option_short').on('click', function(){
$(this).toggleClass('active').next('.option_detail').stop().slideToggle(300);
if ($('.option_short').next('.option_detail:hidden').length == 0) {
$('.option_view-all').text('Свернуть все');
hideAll = true;
console.log('hid = ' + $('.option_short').next('.option_detail:hidden').length);
} else if ($('.option_short').next('.option_detail:visible').length == 1) {
$('.option_view-all').text('Развернуть все');
hideAll = false;
console.log('vis = ' + $('.option_short').next('.option_detail:visible').length);
};
return false;
});