> Remember, the proper HTML should be: > > <option value="myvalue" selected="selected"
No, the SELECTED attribute is what you might call a Boolean attribute - one for which the presence or absence of the attribute specifies its value (true or false). So, this is the correct syntax for a selected option: <option value="whatever" selected>display text goes here</option> (the closing tag is required for XHTML compliance, but not otherwise) Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ______________________________________________________________________ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

