1jQuery(function () { 2 'use strict'; 3 4 const $searchForm = jQuery('.search-results-form'); 5 if (!$searchForm.length) { 6 return; 7 } 8 if (!$searchForm.find('#search-results-form__show-assistance-button').length){ 9 return; 10 } 11 const $toggleAssistanceButton = $searchForm.find('#search-results-form__show-assistance-button'); 12 13 $toggleAssistanceButton.on('click', function () { 14 jQuery('.js-advancedSearchOptions').dw_toggle(); 15 }); 16}); 17