I have 2 time inputs as 7:07:02 and 7:00
How can I find the difference between these two,I prefer to use jquery, Is there any jquery plugins available for this ? ( please let me know if you know other solutions for this )
Thanks a lot
I have 2 time inputs as 7:07:02 and 7:00
How can I find the difference between these two,I prefer to use jquery, Is there any jquery plugins available for this ? ( please let me know if you know other solutions for this )
Thanks a lot
I would recommend Date.js
(Date.parse('7:07:02') - Date.parse('7:00')) / 1000; // => 422 seconds