/home/arranoyd/magicraft/wp-content/themes/massive-dynamic/lib/woocommerce/assets/js/checkout.js
var $=jQuery;

$(document).ready(function(){
    $('main > .content').wrap('<div class="container"></div>');
    $('.form-row').each(function(){
        var $this = $(this),
            $label = $this.find('label'),
            placeholder =$label.html();
        if (placeholder != undefined){
            $this.find('.input-text').attr('placeholder',placeholder.replace(/(<([^>]+)>)/ig,"").replace("&nbsp;",""));
            setTimeout(function(){$this.find('#select2-chosen-2').html(placeholder.replace("&nbsp;",""));},1);
        }
    });
    $('<div class="payment-method"><h3>'+themeOptionValues.payment_methods+'</h3></div>').insertBefore('.woocommerce-checkout-payment');
});