I am using this html table , i want to set current time line in html td. For example current time is 9 AM then set current time line on 9 AM column if time is 10 AM then current time line move to next column.Please help me if any plugin related to this task tell me.Thanks in advance.
<div class="table-responsive custom">
<div class="col-sm-1 mov_div"></div>
<table class="table table-bordered ">
<thead>
<tr>
<th></th>
<th><p>Queed</p></th>
<th><p>7:00</p></th>
<th><p>8:00</p></th>
<th><p>9:00</p></th>
<th><p>10:00</p></th>
<th><p>11:00</p></th>
</tr>
</thead>
<tbody class="context-menu-one">
<!-- <tr> </tr> -->
<tr>
<td>data1</td>
<td></td>
<td><img id="vesselIcon1" src="vesselsIcon/vess-arriving.gif" style= "width:90px;"/></td>
<td></td>
<td></td>
<td></td>
<td>Some Content</td>
</tr>
<tr>
<td>data2</td>
<td></td>
<td></td>
<td></td>
<td><img id="vesselIcon2" src="vesselsIcon/vess-arriving.gif" style= "width:90px;"/></td>
<td></td>
<td></td>
</tr>
<tr>
<td>data 3</td>
<td></td>
<td></td>
<td><img id="vesselIcon3" src="vesselsIcon/vess-arriving.gif" style= "width:90px;"/></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</div>
My html table like this image
I Want like time line like below image