Check out DHTMLCentral.com, they have something called cool menus that is terrific and works on most if not all browsers. They even have an online wizard that will allow you to build the menu and they simply copy and paste the JS straight into your code.
Ricardo On Wed, 19 Dec 2001 09:30:46 -0600, [EMAIL PROTECTED] wrote: No it can not be done without some Javascript. There are a couple of tags in the Allaire(Macromedia) Developers Gallery that will help you if you do not feel up to writing the Javascript. -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of phumes1 Sent: Wednesday, December 19, 2001 9:13 AM To: [EMAIL PROTECTED] Subject: Re: Dropdown menus Can this be done without using any Javascript? I'm pulling fields from a database and listing the font family in my dropdown box. I would like to have a second dropdown box which gets updated with the different font names of the specific font family thats gets selected. I'm not sure how to go about this? <cfquery name="GetFontFamily" datasource="fontstyles" dbtype="ODBC"> SELECT sti, ID FROM fontsti WHERE sti LIKE '<cfoutput>#alphachar#%</cfoutput>' </cfquery> <form name="display"> <select name="example" size="1"> <option selected>Select Family ... </option> <cfoutput query="GetFontFamily"> <option value="GetFontName.cfm?ID=#GetFontFamily.ID#&style=#GetFontFamily.sti#">#Lis tFirst(GetFontFamily.sti, ".")#</option> </cfoutput> </select> <input type="hidden" name="test" value="Go!"> </form> ------------------------------------------------------------------------- This email server is running an evaluation copy of the MailShield anti- spam software. Please contact your email administrator if you have any questions about this message. MailShield product info: www.mailshield.com ----------------------------------------------- To post, send email to [EMAIL PROTECTED] To subscribe / unsubscribe: http://www.dfwcfug.org ------------------------------------------------------------------------- This email server is running an evaluation copy of the MailShield anti- spam software. Please contact your email administrator if you have any questions about this message. MailShield product info: www.mailshield.com ----------------------------------------------- To post, send email to [EMAIL PROTECTED] To subscribe / unsubscribe: http://www.dfwcfug.org Sincerely, Ricardo Sanoja ______________________________________________________________________________ Send a friend your Buddy Card and stay in contact always with Excite Messenger http://messenger.excite.com ------------------------------------------------------------------------- This email server is running an evaluation copy of the MailShield anti- spam software. Please contact your email administrator if you have any questions about this message. MailShield product info: www.mailshield.com ----------------------------------------------- To post, send email to [EMAIL PROTECTED] To subscribe / unsubscribe: http://www.dfwcfug.org
