When multi address shipping, billing.phtml loads the stripe paymnent module but does not run the java script at bottom of page, see below
<script type="text/javascript">
//<![CDATA[
Element.getElementsBySelector($('payment_form_<?php echo $_code ?>'), 'input', 'select').each(function(el) {
el.value = TemplateTag.Stripe.Card[el.id] || "";
el.observe('change', function(elem) {
var elem = Event.element(event);
TemplateTag.Stripe.Card[elem.id] = elem.value;
});
});
//]]>
</script>
in onepage checkout the payment section loads the same stripe payment module and all runs fine. Help!
Jack