Home Messages Index
[Date Prev][Date Next][Thread Prev][Thread Next]
Author IndexDate IndexThread Index

Re: <select> tab position

  • Subject: Re: <select> tab position
  • From: Roy Schestowitz <newsgroups@schestowitz.com>
  • Date: Sun, 16 Jan 2005 05:58:51 +0000
  • Newsgroups: alt.html
  • References: <PrqdnQuc9snWZnTcRVn-qw@rogers.com>
  • Supersedes: <cscvp1$2qlh$1@godfrey.mcc.ac.uk>
  • User-agent: KNode/0.7.2
Andrew wrote:

> Hi there,
> 
> I have a dropmenu written of js, and a <select> tab is below close to this
> menu. When the menu drops down, the <select> tab always displays above the
> dropmenu, so that the dropdown menu always incompletely display under the
> select options. I tried to set the style of select tab z-index, but no
> help. Any idea? Thanks
> 
> Andrew

Try the following:

function formHandler(form){
var URL =
document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}

<form name="form" action="">
<select name="site" onchange="javascript:formHandler()">
<option value="<<URL>>"><<NAME>></option>
</select>
</form>

-- 
Roy Schestowitz
http://schestowitz.com

[Date Prev][Date Next][Thread Prev][Thread Next]
Author IndexDate IndexThread Index