8 lines
238 B
HTML
8 lines
238 B
HTML
<script type="text/javascript">
|
|
jQuery(document).ready(function ($) {
|
|
$(document.body).on('change', 'input[name="payment_method"]', function () {
|
|
$('body').trigger('update_checkout');
|
|
});
|
|
});
|
|
</script>
|