Your IP : 216.73.216.145


Current Path : /home/gotzfrokfn/www/plugins/vmpayment/realex_hpp_api/realex_hpp_api/assets/js/
Upload File :
Current File : /home/gotzfrokfn/www/plugins/vmpayment/realex_hpp_api/realex_hpp_api/assets/js/site.js

/**
 *
 * Realex payment plugin
 *
 * @author Valerie Isaksen
 * @version $Id: site.js 10130 2019-09-11 08:36:03Z Milbo $
 * @package VirtueMart
 * @subpackage payment
 * Copyright (C) 2004 - 2015 Virtuemart Team. All rights reserved.
 * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
 * VirtueMart is free software. This version may have been modified pursuant
 * to the GNU General Public License, and as distributed it includes or
 * is derivative of works licensed under the GNU General Public License or
 * other free or open source software licenses.
 * See /administrator/components/com_virtuemart/COPYRIGHT.php for copyright notices and details.
 *
 * http://virtuemart.net
 */
jQuery().ready(function ($) {

    /************/
    /* Handlers */
    /************/
    handleRealexRemoteCCForm = function () {
        var hasCreditcardsDropDownClass = $("#vmpayment_cardinfo > *").hasClass("creditcardsDropDown");
        if (hasCreditcardsDropDownClass) {
            var CCselected = $(".creditcardsDropDown input[type='radio']:checked").val();
            $('.realexRemoteCCForm').hide();
            $('.vmpayment_cc_cvv_realvault').show();
            if (CCselected == -1) {
                $('.realexRemoteCCForm').show();
                $('.vmpayment_cc_cvv_realvault').hide();
            }
        }

    }


    /**********/
    /* Events */
    /**********/
    $('.realexListCC').change(function () {
        handleRealexRemoteCCForm();

    });

    /*****************/
    /* Initial calls */
    /*****************/
    handleRealexRemoteCCForm();

});