Click to See Complete Forum and Search --> : form field in a pop-up menu?


emiel
06-06-2003, 01:36 AM
For everybody who doesn't understand.

I'm a designer not a developer. I work with Fireworks, Dreamweaver, Flash etc.
Firework has the possibility to generate Drop-down or Pop-up menu's (whatever it is called) the programme writes the javascipt for you. Those menu's are nice, but i would like to put in a text field in which visitors can search for things on the site. you know, like every other search field.

An example of a menu can be found at http://www.curve.nl
This menu doesn't have the search field in itself.

Emiel Koomen

gil davis
06-06-2003, 07:16 AM
Please explain further. What do you mean by "pop-up menu" and "peanuts". A sample code would help.

Nicodemas
06-06-2003, 07:21 AM
if he's talking about a pop-up window (not some whacky dhtml/javascript menu) it would be as easy as

var openWin = window.open("","","properties='height=100,width=300'");

openWin.document.write("blah blah blah");

etc. etc..



Of course, I could be oversimplifying this.