jQuery(function($){ | |
// Move zip in form | |
$('.wpforms-field-address').each(function(){ | |
var $this = $(this), | |
$zipField = $this.find('.wpforms-field-row-block').last(), | |
$thirdRow = $this.find('.wpforms-field-row:nth-last-child(2)'); | |
$zipField.appendTo($thirdRow).removeClass('wpforms-first'); | |
$thirdRow.find('.wpforms-one-half').toggleClass('wpforms-one-half wpforms-one-third'); | |
$this.find('.wpforms-field-row').last().remove(); | |
}); | |
}); |