%PDF- %PDF-
| Direktori : /proc/self/root/proc/self/root/proc/self/root/home/bitrix/www/bitrix/templates/UB/js/ |
| Current File : //proc/self/root/proc/self/root/proc/self/root/home/bitrix/www/bitrix/templates/UB/js/script.js |
$(document).ready(function(){
/* On/Off catalog filter */
$("#but_onoff").click(function () {
if($(this).attr("class")=="find-el-on") {
$(this).attr("class","find-el-off");
$(".filtrs").slideUp(200);
$(".fs_types").hide(100);
$("#del_filter").trigger('click');
}
else if($(this).attr("class")=="find-el-off") {
$(".filtrs").slideDown(200);
$(this).attr("class","find-el-on");
$(".fs_types").show(200);
}
});
$("#f_extended").click(function () {
if($("#f_extended").attr('class')!="f_ex_y") {
$(".container2").show(400);
$(this).attr('class', 'f_ex_y');
} else {
$(".container2").hide(400);
$(this).attr('class', 'f_ex_n');
}
});
$("#f_simple").click(function () {
$(".container2").hide(200);
});
})