I have my code
sum=parseFloat($('input[name=fieldname]').val()) * 60 +
parseFloat($('input[name=fieldname]').val()) +
(($('input[name=fieldname]').val()) /60).toFixed(2).
It get's the values from felds where I enter duration and it should give me the sum in minutes. The problem is that the sum I get concatenates the 3 fields instead of returning the number of minutes.
Eg: for 1 hours and 20 minutes I get 6020 instead of (60+20) 80
Edit: The code above is the generic form, here is the exact code.
var sum = parseFloat($('input[name="<?php esc_attr_e( $field->field_id ); ?>hrs"]').val())*60 +
parseFloat(($('input[name="<?php esc_attr_e( $field->field_id ); ?>mins"]').val()) +
parseFloat($('input[name="<?php esc_attr_e( $field->field_id ); ?>secs"]').val())/60).toFixed(2)
$('input[name=fieldname]').val()thrice? – Bergi Feb 23 at 16:21