').addClass('dropdown selectDropdown');$(this).wrap(dropdown);var label=$('').text($(this).attr('placeholder')).insertAfter($(this));var list=$('
');$(this).find('option').each(function(){list.append($('').append($('').text($(this).text()).attr('langFilterId',$(this).attr('value'))));});list.insertAfter($(this));});$(document).on('click touch','.selectDropdown ul li a',function(e){e.preventDefault();var dropdown=$(this).parent().parent().parent();var active=$(this).parent().hasClass('active');var label=active?dropdown.find('select').attr('placeholder'):$(this).text();dropdown.find('option').prop('selected',false);dropdown.find('ul li').removeClass('active');dropdown.toggleClass('filled',!active);dropdown.children('span').text(label);if(!active){dropdown.find('option:contains('+$(this).text()+')').prop('selected',true);$(this).parent().addClass('active');}
dropdown.removeClass('open');if(!active){langFilterId=$(this).attr('langFilterId');}else{langFilterId=-1;}});$('.dropdown > span').on('click touch',function(e){var self=$(this).parent();self.toggleClass('open');});$(document).on('click touch',function(e){var dropdown=$('.dropdown');if(dropdown!==e.target&&!dropdown.has(e.target).length){dropdown.removeClass('open');}});