jQuery(function($){ var $deactivateLink = $('#the-list').find('[data-slug="ultimate-faqs"] span.deactivate a'), $overlay = $('#ewd-ufaq-deactivate-survey-ultimate-faqs'), $form = $overlay.find('form'), formOpen = false; // Plugin listing table deactivate link. $deactivateLink.on('click', function(event) { event.preventDefault(); $overlay.css('display', 'table'); formOpen = true; $form.find('.ewd-ufaq-deactivate-survey-option:first-of-type input[type=radio]').focus(); }); // Survey radio option selected. $form.on('change', 'input[type=radio]', function(event) { event.preventDefault(); $form.find('input[type=text], .error').hide(); $form.find('.ewd-ufaq-deactivate-survey-option').removeClass('selected'); $(this).closest('.ewd-ufaq-deactivate-survey-option').addClass('selected').find('input[type=text]').show(); }); // Survey Skip & Deactivate. $form.on('click', '.ewd-ufaq-deactivate-survey-deactivate', function(event) { event.preventDefault(); location.href = $deactivateLink.attr('href'); }); // Survey submit. $form.submit(function(event) { event.preventDefault(); if (! $form.find('input[type=radio]:checked').val()) { $form.find('.ewd-ufaq-deactivate-survey-footer').prepend('Please select an option below'); return; } var data = { code: $form.find('.selected input[type=radio]').val(), install_time: $form.data('installtime'), reason: $form.find('.selected .ewd-ufaq-deactivate-survey-option-reason').text(), details: $form.find('.selected input[type=text]').val(), site: ewd_ufaq_deactivation_data.site_url, plugin: 'Ultimate FAQs' } var submitSurvey = $.post('https://www.etoilewebdesign.com/UPCP-Key-Check/Deactivation_Surveys.php', data); submitSurvey.always(function() { location.href = $deactivateLink.attr('href'); }); }); // Exit key closes survey when open. $(document).keyup(function(event) { if (27 === event.keyCode && formOpen) { $overlay.hide(); formOpen = false; $deactivateLink.focus(); } }); });