I have a javascript function which gets time from a function. Its like a counter starting from 00:00 and goes on to a fixed time. The timer can be paused/resumed with a button. And it works fine.The javascript function gives time elapsed and total time!Now I have two CSS: \[code\]#seek-bg and #seek-bar\[/code\]I want to move the seek-bar on seek-bg horizontally. Is it possible to do so without jquery?How can I connect the timer and these CSS? Code!\[code\]#seek-bg{height:3px;background-color:black;width:100px;position:relative;}#seek-bar{background-color:white;width:4px;height:3px;}\[/code\]