jQuery(function () { 'use strict'; const $searchForm = jQuery('.search-results-form'); if (!$searchForm.length) { return; } if (!$searchForm.find('#search-results-form__show-assistance-button').length){ return; } const $toggleAssistanceButton = $searchForm.find('#search-results-form__show-assistance-button'); $toggleAssistanceButton.on('click', function () { jQuery('.js-advancedSearchOptions').dw_toggle(); }); });