HTML. Set the scrolling bar in a determinated position
I would like to set the position of the scrolling bar in a determinated position. In my case I have in a <div>
all the hours of the day by hh:00 hh:30 so 48 rows and I 开发者_如何学运维would like to set the position in the current time of the day or aprox.
Is there any way to do that?
Update
I'm talking about a div element. I forgot to put the escape key.
Could you just put an anchor in at each of the 48 rows and then have a link to that anchor?
UDPATE You could have the following:
<a name="133000"/>time: 13:30:00
For your row for the time 1:30 pm. The <a name="133000"/>
is a named anchor.
When you want ot have a link to that part of the page you do this:
<a href="thisDocument.html#133000">Go to 13:30:00</a>
A better link to what I'm talking about: http://www.htmlcodetutorial.com/linking/_A_NAME.html
精彩评论