Forum Moderators: open

Message Too Old, No Replies

How to do it like MSN Search?

         

Enigma

8:42 pm on Feb 16, 2003 (gmt 0)

10+ Year Member



Hi.

On the results page of MSN Search, results are presented in the form of an ordered list. Paging through results, the list numbers incremement. (ie 1-10, 11-20).

How is this done, how does the ordered list know to start at number 20 on another page? The first <li> in an <ol> would be presented as "1", but this is being over-rided.

Anyone know how?

threecrans

3:37 pm on Feb 17, 2003 (gmt 0)

10+ Year Member



Looks like their using a simple "start="

<html>
<body>
<ol start ="11">
<li>item 11
<li>item 12
<li>item 13
</ol>
</body>
</html>

Enigma

1:26 pm on Feb 18, 2003 (gmt 0)

10+ Year Member



I didn't notice nor know about that.

Thank you threecrans, I'll let you know how I get on!