Ubuntu
var $=jQuery;
$(document).ready(function(){
$('main > .content').wrap('');
$('.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,""));
setTimeout(function(){$this.find('#select2-chosen-2').html(placeholder.replace(/(<([^>]+)>)/ig,""));},1);
}
});
$(''+themeOptionValues.payment_methods+'
').insertBefore('.woocommerce-checkout-payment');
});