Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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) 
share|improve this question
2  
Why do you use $('input[name=fieldname]').val() thrice? – Bergi Feb 23 at 16:21
@Bergi - +1. You know, I've always liked that word... "thrice"... so rarely have an opportunity to use it in a sentence. – j08691 Feb 23 at 16:22
It is a generic form of my code – Ioan Feb 23 at 16:23
Edited my question – Ioan Feb 23 at 16:24

2 Answers

up vote 1 down vote accepted

It concatenates because you still have a string in your statement. Let's shortcut the number conversion functions and just do it with straight syntax:

var h = $('input[name=hours]').val(),
    m = $('input[name=minutes]').val(),
    s = $('input[name=seconds]').val();
sum = 3600*(h|0) + 60*(m|0) + (s|0);
share|improve this answer
Shouldn't you accept floats as well, at least for seconds? – Jan Dvorak Feb 23 at 16:25
only if the page does, in which case you should probably have a milliseconds field, instead. var ms = $(...).val() and then sum = ... + (ms|0)/1000? – Mike 'Pomax' Kamermans Feb 23 at 16:26
not my page; note that multiplication already converts to numbers so the first two casts are not strictly neccessary. – Jan Dvorak Feb 23 at 16:27
Thank you! Made it work – Ioan Feb 23 at 16:41

toFixed() returns a string, and that is concatenated to the result of the previous calculation. Use this:

var input = parseFloat($('input[name=fieldname]').val());
sum = input * 60 + input + Math.round(input / 6000) * 100;

(works equivalent if you've got separate inputs, I think you get the idea)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.