Drop down box

  • Thread starter Thread starter Richard
  • Start date Start date
R

Richard

I have a page with a drop down box containing Dates such as July 08, Aug. 08
and so on. On the same page I have the same dates followed by the data for
that month. How do you bookmark(link) the same date in the drop down box with
the same date on the page. Thanks in advance!!
 
Richard said:
I have a page with a drop down box containing Dates such as July 08, Aug.
08
and so on. On the same page I have the same dates followed by the data for
that month. How do you bookmark(link) the same date in the drop down box
with
the same date on the page. Thanks in advance!!

Hi Richard:
Take a look at the script on this page. Where it says:

<option value=http://www.quackit.com/javascript/>JavaScript</option>
<option value=http://www.quackit.com/html/>HTML</option>

change it to

<option value=yourpage.htm#july08>July 08</option>
<option value=yourpage.htm#aug08>August 08</option>

and create the bookmarks for the data on the page as july08, aug08, etc.


--

~ Kathleen Anderson
Microsoft MVP - FrontPage
Spider Web Woman Designs
Expression Web Resources: http://www.spiderwebwoman.com/xweb/
FrontPage Resources: http://www.spiderwebwoman.com/resources/
Please reply to the newsgroup for the benefit of others
 
Back
Top