jQuery(document).ready(function () { function mobileNav() { $('.cp-menu-open').on('click', function (e) { e.preventDefault(); $(this).closest('body').toggleClass('cp-menu-opened'); }); } mobileNav(); $('#cpDonateModuleBtn').click(function (e) { var href = $('#cpDonateModuleBtn').attr('href'); e.preventDefault(); //var amount = $('#uxGlobalSearchTerm').val(); var amount = $(".cp-donation-preselector input[type='radio'][name='pre']:checked"); var type = $(".cp-donation-regularity .selectBox-label").text(); window.location.href = href + "?amount=" + amount.val() + "&type=" + type; }); });