Hi,
I use Load JS action to calculate prices for different activities
at the end, the total price is automatically filled
I need a new field for paypal payment that displays the total + 4%
but I don't find in the forums how to edit the corresponding Load JS Action
I've tried something but as I don't know JS coding....
I use Load JS action to calculate prices for different activities
at the end, the total price is automatically filled
I need a new field for paypal payment that displays the total + 4%
but I don't find in the forums how to edit the corresponding Load JS Action
I've tried something but as I don't know JS coding....
window.addEvent('domready', function() {
$('total_a_payer').addEvent('keyup', rekenen2);
});
function rekenen2() {
$('total_paypal').value = parseInt($('total_a_payer').value + (4/100));
}