Help on creating a drop down menu in a webpage

edytwinky

Board Regular
Joined
Sep 8, 2006
Messages
199
Help on creating a drop down menu in a webpage

--------------------------------------------------------------------------------

On the following website there is a drop down leaderboard:
http://www.pokerleaguesoftware.com/features.htm#leaderboard

That I would love to incorporate on my webpage. I have all the minipages and tables set up. I just need help on how to install the menu on my webpage.

Any assistance would be appreciated.

Thanks in advance.
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
To create menus on webpages you need to use a select form field, I think that's the term anyway - it's definitely a form field.

Any decent web design package should allow you to insert such a thing and sets its properties eg choices easily.

This was created using FrontPage.

<select name="D1" size="1">
<option value="Option1">Option1</option>
<option value="Option2">Option2</option>
</select>


Code:
And the HTML is this.

<select name="D1" size="1">
    <option value="Option1">Option1</option>
    <option value="Option2">Option2</option>
</select>

[Edited by Von Pookie~added the closing /select tags to fix HTML display--post was messing up the page display.]
 
Upvote 0
If you look at the webpage, you'll notice the drop down menu brings up different tables inside the webpage. I've tried toying around with it and am so totally lost.
 
Upvote 0
Upvote 0
I would probably say they are selling the program to keep track of your stats and run a league for you.

I've already created an excel program to do that for me. Now I would just like to use a table format similar to that.
 
Upvote 0

Forum statistics

Threads
1,225,322
Messages
6,184,275
Members
453,225
Latest member
adelphiaUK

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top