Polaroid

WapZero
mobile information, download, service and tricks




Create Pull Down Menu

For create pull down menu, you just need this code :
<FORM NAME="myform">
<SELECT NAME="mylist">
<OPTION VALUE="here.html" >Here
<OPTION VALUE="there.html">There
<OPTION VALUE="anywhere.html">Anywhere
</SELECT>
<INPUT TYPE="button" VALUE="Go" onClick="location.href = myform.mylist.options[myform.mylist.selectedIndex].value">
</FORM>


It will be like this :


Nb : Change "here.html", "there.html",and "anywhere.html" with your URL page for be the content of menu.