Drop Down Menu

Go4Expert Member
28Jul2010,10:13   #1
siddharthrkulkarni's Avatar
Hello,
My name is Siddharth Kulkarni, learning jsp. I have problem on "How to create drop down menu in java server pages?". Its my request, if anyone knows this then please tell me solution. Thanking You.
Go4Expert Founder
28Jul2010,10:16   #2
shabbir's Avatar
Drop down in JSP or you mean in HTML?
Go4Expert Member
28Jul2010,10:17   #3
siddharthrkulkarni's Avatar
oh....so this in html.....thnx....then how to create drop down menu in html?
Go4Expert Founder
28Jul2010,10:26   #4
shabbir's Avatar
As simple as

HTML Code:
<select name="SomeName">
	<optgroup label="Site Areas">
		<option value="opt1" >Option 1</option>
		<option value="opt2" >Option 2</option>
		<option value="opt3" >Option 3</option>
		<option value="opt4" >Option 4</option>
		<option value="opt5" >Option 5</option>
		<option value="opt6" >Option 6</option>
	</optgroup>
</select>
Go4Expert Member
28Jul2010,10:31   #5
siddharthrkulkarni's Avatar
Sorry, that was drop down list....but I want drop down menu....anyone help me!
Go4Expert Founder
28Jul2010,13:52   #6
shabbir's Avatar
Can you explain what you meant by menu?

Do you mean the one that comes here at G4Ef when you click on username of the post?
Go4Expert Member
28Jul2010,22:01   #7
siddharthrkulkarni's Avatar
I am new to this "Go4Expert"......I want drop down menu....that means if u just put cursor on that menu title then there should appear sub menu or menu items!
Go4Expert Member
28Jul2010,22:10   #8
siddharthrkulkarni's Avatar
Drop Down Menu means Pop up Menu....is there anyone to help?
Go4Expert Member
28Jul2010,22:29   #9
siddharthrkulkarni's Avatar
Sorry, I got few bit on this....actually menu means list, but I want to create list looks like menu as created in many web sites....so please help me!!
Go4Expert Founder
29Jul2010,00:28   #10
shabbir's Avatar
Check the JS/CSS code on the site and grab it.