Robert Orlini wrote: > In the example below, how would I use Javascript or CF informing a user to > please make a selection as opposed to clicking SUBMIT on the title "View > Available Reports"? > > Thanks as always. > > <form method="post" action="test.cfm"> > > <select name="date"> > <option>View Available Reports</option> > </select> > > <input type="image" src="images/view.gif" name="submit" value="submit"> > </form>
Maybe give it a label, and just put the dates in the select box: <form method="post" action="test.cfm"> <label for="date">View Report For:</label><br /> <select name="date" id="date"> <!--- Dates go here ---> </select> <input type="image" src="images/view.gif" /> </form> The low-tech solution's usually the best. Is there any reason you were giving the label as an option? K. -- Keith Gaughan, Developer Digital Crew Ltd., Pembroke House, Pembroke Street, Cork, Ireland http://digital-crew.com/ -- No virus found in this outgoing message. Checked by AVG Anti-Virus. Version: 7.0.300 / Virus Database: 265.6.8 - Release Date: 03/01/2005 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Find out how CFTicket can increase your company's customer support efficiency by 100% http://www.houseoffusion.com/banners/view.cfm?bannerid=49 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:189447 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

