For a select box (simplified):

<select name="catID" id="select">
   <cfloop query="getCATS">
       <option value="#getCATS.catID#">#getCATS.catNAME#</option>
   </cfloop>
</select>

I need to display additional info for each selection when the selection 
is made - before the form is submitted.
So if you've got
  Record 1
  Record 2
  Record 3
...and somebody selects "Record 2" - I need the contents of an 
additional field ("cat_comments") to immediately display under the 
select before the form is submitted...

Still scratching my head. Can somebody point me in the correct direction 
to pull this off?





~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:322471
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to