| 1 |
|
if (Drupal.jsEnabled) { |
| 2 |
|
$(document).ready(function() { |
| 3 |
|
$("#edit-same-address").change(function () { |
| 4 |
|
if ($("input#edit-same-address:checked").val()==1) { |
| 5 |
|
$("fieldset.shipping_address").hide(); |
| 6 |
|
$("input#edit-shipping-firstname").val($("input#edit-billing-firstname").val()); |
| 7 |
|
$("input#edit-shipping-lastname").val($("input#edit-billing-lastname").val()); |
| 8 |
|
$("select#edit-shipping-country-id").val($("select#edit-billing-country-id").val()); |
| 9 |
|
$("input#edit-shipping-city").val($("input#edit-billing-city").val()); |
| 10 |
|
$("input#edit-shipping-street").val($("input#edit-billing-street").val()); |
| 11 |
|
$("input#edit-shipping-postcode").val($("input#edit-billing-postcode").val()); |
| 12 |
|
$("input#edit-shipping-telephone").val($("input#edit-billing-telephone").val()); |
| 13 |
|
}else $("fieldset.shipping_address").show(); |
| 14 |
|
}); |
| 15 |
|
}); |
| 16 |
|
} |
| 17 |
|
|