I've got a form that I need to calculate a value once the user has put in several measurements. I am missing something simple I am sure, but the calculation is not working. Here is the code I am using -
Joomla 3.3.1, Chronoforms V4
window.addEvent('domready', function(){
$('calculate').addEvent('click', function(){
document.forms[0]..value=document.forms[0].Above_a.value*Above_b.value*Above_c.value*5.9;
});
});
Joomla 3.3.1, Chronoforms V4