%PDF- %PDF-
Direktori : /var/www/html/higroup/wp-content/plugins/paid-memberships-pro/js/ |
Current File : /var/www/html/higroup/wp-content/plugins/paid-memberships-pro/js/pmpro-checkout.js |
jQuery(document).ready(function(){ // Discount code JS if we are showing discount codes. if ( pmpro.show_discount_code ) { //update discount code link to show field at top of form jQuery('#other_discount_code_a').attr('href', 'javascript:void(0);'); jQuery('#other_discount_code_a').click(function() { jQuery('#other_discount_code_tr').show(); jQuery('#other_discount_code_p').hide(); jQuery('#other_discount_code').focus(); }); //update real discount code field as the other discount code field is updated jQuery('#other_discount_code').keyup(function() { jQuery('#discount_code').val(jQuery('#other_discount_code').val()); }); jQuery('#other_discount_code').blur(function() { jQuery('#discount_code').val(jQuery('#other_discount_code').val()); }); //update other discount code field as the real discount code field is updated jQuery('#discount_code').keyup(function() { jQuery('#other_discount_code').val(jQuery('#discount_code').val()); }); jQuery('#discount_code').blur(function() { jQuery('#other_discount_code').val(jQuery('#discount_code').val()); }); // Top discount code field click handler. jQuery('#other_discount_code_button').click(function() { var code = jQuery('#other_discount_code').val(); var level_id = jQuery('#level').val(); if(code) { //hide any previous message jQuery('.pmpro_discount_code_msg').hide(); //disable the apply button jQuery('#other_discount_code_button').attr('disabled', 'disabled'); jQuery.ajax({ url: pmpro.ajaxurl, type:'GET',timeout: pmpro.ajax_timeout, dataType: 'html', data: "action=applydiscountcode&code=" + code + "&level=" + level_id + "&msgfield=pmpro_message", error: function(xml){ alert('Error applying discount code [1]'); //enable apply button jQuery('#other_discount_code_button').removeAttr('disabled'); }, success: function(responseHTML){ if (responseHTML == 'error') { alert('Error applying discount code [2]'); } else { jQuery('#pmpro_message').html(responseHTML); } //enable invite button jQuery('#other_discount_code_button').removeAttr('disabled'); } }); } }); // Bottom discount code field click handler. jQuery('#discount_code_button').click(function() { var code = jQuery('#discount_code').val(); var level_id = jQuery('#level').val(); if(code) { //hide any previous message jQuery('.pmpro_discount_code_msg').hide(); //disable the apply button jQuery('#discount_code_button').attr('disabled', 'disabled'); jQuery.ajax({ url: pmpro.ajaxurl,type:'GET',timeout: pmpro.ajax_timeout, dataType: 'html', data: "action=applydiscountcode&code=" + code + "&level=" + level_id + "&msgfield=discount_code_message", error: function(xml){ alert('Error applying discount code [1]'); //enable apply button jQuery('#discount_code_button').removeAttr('disabled'); }, success: function(responseHTML){ if (responseHTML == 'error') { alert('Error applying discount code [2]'); } else { jQuery('#discount_code_message').html(responseHTML); } //enable invite button jQuery('#discount_code_button').removeAttr('disabled'); } }); } }); } // Validate credit card number and determine card type. if ( typeof jQuery('#AccountNumber').validateCreditCard == 'function' ) { jQuery('#AccountNumber').validateCreditCard(function(result) { var cardtypenames = { "amex" : "American Express", "diners_club_carte_blanche" : "Diners Club Carte Blanche", "diners_club_international" : "Diners Club International", "discover" : "Discover", "jcb" : "JCB", "laser" : "Laser", "maestro" : "Maestro", "mastercard" : "Mastercard", "visa" : "Visa", "visa_electron" : "Visa Electron" }; if(result.card_type) jQuery('#CardType').val(cardtypenames[result.card_type.name]); else jQuery('#CardType').val('Unknown Card Type'); }); } // Find ALL <form> tags on your page jQuery('form').submit(function(){ // On submit disable its submit button jQuery('input[type=submit]', this).attr('disabled', 'disabled'); jQuery('input[type=image]', this).attr('disabled', 'disabled'); jQuery('#pmpro_processing_message').css('visibility', 'visible'); }); //add required to required fields if ( ! jQuery( '.pmpro_required' ).next().hasClass( "pmpro_asterisk" ) ) { jQuery( '.pmpro_required' ).after( '<span class="pmpro_asterisk"> <abbr title="Required Field">*</abbr></span>' ); } //unhighlight error fields when the user edits them jQuery('.pmpro_error').bind("change keyup input", function() { jQuery(this).removeClass('pmpro_error'); }); //click apply button on enter in discount code box jQuery('#discount_code').keydown(function (e){ if(e.keyCode == 13){ e.preventDefault(); jQuery('#discount_code_button').click(); } }); //hide apply button if a discount code was passed in if( pmpro.discount_code_passed_in ) { jQuery('#discount_code_button').hide(); jQuery('#discount_code').bind('change keyup', function() { jQuery('#discount_code_button').show(); }); } //click apply button on enter in *other* discount code box jQuery('#other_discount_code').keydown(function (e){ if(e.keyCode == 13){ e.preventDefault(); jQuery('#other_discount_code_button').click(); } }); //add javascriptok hidden field to checkout jQuery("input[name=submit-checkout]").after('<input type="hidden" name="javascriptok" value="1" />'); // Keep bottom message box in sync with the top one. jQuery('#pmpro_message').bind("DOMSubtreeModified",function(){ setTimeout( function(){ pmpro_copyMessageToBottom() }, 200); }); function pmpro_copyMessageToBottom() { jQuery('#pmpro_message_bottom').html(jQuery('#pmpro_message').html()); jQuery('#pmpro_message_bottom').attr('class', jQuery('#pmpro_message').attr('class')); if(jQuery('#pmpro_message').is(":visible")) { jQuery('#pmpro_message_bottom').show(); } else { jQuery('#pmpro_message_bottom').hide(); } } });