i have 2 changes, the live change works fine however the 2nd change for the selects does not seem to work, anyone got any idea or can these be merged together?
$(".shipping").live('change', function () {
var billingId = $(this).attr('id').replace('_shipping_', '_billing_');
$('#' + billingId).val($(this).val());
});
$("#same_shipping_address_title").change(function () {
$("#same_billing_address_title").val($(this).val());
});
It was due to uniform which needed to
$.uniform.update()to update the list.