Posted on: 6/10/2015 7:39:49 AM | Views : 623

Hi,
I have 3 textboxes where I want to do below thing
1: User will add InComing Time in first textbox
2: User will add OutGoing Time in Second Textbox
On the third textbox, I want to show the total time he was their in office. Can you please help me using jquery or javascript how to achieve this.
Note: The time format is HH:MM and in 24 hrs format.

Here is my HTML
<tr> <td> <asp:Label ID="lblInTime" runat="server" Text="In Time" Visible="true"></asp:Label>&nbsp; <asp:TextBox ID="txtInTime" runat="server" Width="89px"></asp:TextBox> <asp:RegularExpressionValidator ID="regIntime" runat="server" ControlToValidate="txtInTime" ...

Go to the complete details ...