Apr 25, 2001 #1 kanin247 Programmer Apr 23, 2001 113 US how do you refer to drop down items as variables? or how do you use the drop down items in equations? for example... Select KV (drop down menu) - 230 - 115 - 46 - 33 equation XF=66.8/KV*KV thanks for the help. ~kanin
how do you refer to drop down items as variables? or how do you use the drop down items in equations? for example... Select KV (drop down menu) - 230 - 115 - 46 - 33 equation XF=66.8/KV*KV thanks for the help. ~kanin
Apr 25, 2001 1 #2 cwinans Programmer Mar 26, 2001 102 US document.forms["form_name"].elements["drop_down_name"] from that you can get it's value (".value" and lots of other stuff. check out msdn.microsoft.com/workshop/ click on HTML and CSS link and then DHTML Reference... very good site. I hope this helped! ;-) - Casey Winans Upvote 0 Downvote
document.forms["form_name"].elements["drop_down_name"] from that you can get it's value (".value" and lots of other stuff. check out msdn.microsoft.com/workshop/ click on HTML and CSS link and then DHTML Reference... very good site. I hope this helped! ;-) - Casey Winans