diff --git a/public/opac/js/recherche.js b/public/opac/js/recherche.js index 4eca21f9ee7d75c538fb0f0e43a8bd38733f7435..f4e2f621d93cfd1ecc3a30e22613943fa53fda76 100644 --- a/public/opac/js/recherche.js +++ b/public/opac/js/recherche.js @@ -414,12 +414,14 @@ var scrollToSelectedNoticeInResult = function() { function modeFacetteCochable() { $('.filtre_recherche li.facette_cochable').each(function() { - $(this).find('a').click(function(event) { - event.preventDefault(); - $(this).siblings('input').click(); - }); - $(this).find('input').click(function(){ - window.location = $(this).attr('checked') ? $(this).next().attr('href') : $(this).siblings('.remove_facette').attr('href'); + $(this).click(function(){ + $(this).find('a').each(function(){ + event.preventDefault(); + }); + + window.location = $(this).hasClass('checked') + ? $(this).children('a.remove_facette').attr('href') + : $(this).children('a.facette').attr('href'); }); }); }