Last active
July 19, 2018 17:03
-
-
Save aatronco/a87ef67b199468a6c8deaa1fa619796f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
$(document).ready(function(){ | |
$('form#checkout').submit(function(){ | |
// change address to "retiro en tienda" | |
if($('#order_shipping_method_96203').is(':checked')){ | |
$('#order_shipping_address_address').val('Av. Apoquindo 4900 local 160, Centro Comercial OMNIUM'); | |
$('#order_shipping_address_city').val('Santiago'); | |
$('#order_shipping_address_postal').val('7560973'); | |
$('#order_shipping_address_region').val('12') | |
var evt = document.createEvent("HTMLEvents"); | |
evt.initEvent("change", false, true); | |
$('#order_shipping_address_region')[0].dispatchEvent(evt); | |
$('#order_shipping_address_municipality').val('8261428'); | |
var evt = document.createEvent("HTMLEvents"); | |
evt.initEvent("change", false, true); | |
$('#order_shipping_address_municipality')[0].dispatchEvent(evt); | |
} | |
}); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment