FormAssembly's HTTPS Connector is a little dopey when it comes to drop-down values-- they really need a button in here that lets you copy everything from the left column to right. But until we have that, we can use some jQuery to copy it in the Inspector.
(function ($) {
"use_strict";
$('pick-tfa_## .picklist td:first-child').each(function (index) {
var value = $(this).text();
$(this).next().find('input').val(value);
})
}(jQuery));
Top comments (0)