var editSearchBtnText = 'Edit Search';
var editSearchOpenedText = 'Edit Search';
jQuery(document).on('click', "#toggle", function () {
if (window.matchMedia("(min-width: 768px)").matches) {
jQuery(this).toggleClass("on");
jQuery("#menu").slideToggle();
if (jQuery(this).hasClass('on')) {
jQuery(this).find('.Search-bar').val(editSearchOpenedText);
} else {
jQuery(this).find('.Search-bar').val(editSearchBtnText);
}
}
});