Rastafari wrote: > how would i do this same easy thing without the same id/name? > > tw
What Mike and I have been trying to get across is that same names good, same ids bad. Providing a group of check box or radio controls the same name is the proper way to get the desired behavior you described. But do not give them the same ids. Either leave the ids off as they probably server little to know purpose or somehow provide unique ids for each control. Name and value combined as one posibility. <input type="radio" name="color" value="red" id="color_red"> <input type="radio" name="color" value="blue" id="color_blue"> <input type="radio" name="color" value="green" id="color_green"> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive: http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:287852 Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.5
