Your option tags don't have values (not something I would recommend). FF
is picking up the text as the value, but IE isn't. Just change your code
to

mystr3 += ((mystr3.length>0)?"|":"") + m2.options[i].text

Of course, a better solution would be to actually use the values of your
options (both in the tags and in your JS functions).

Pascal

> 
>   var mystr3 = ""
>   for (i=0; i<m2.length; i++) {
>       mystr3 = mystr3 + "|" + m2.options[i].value
>   }
>   document.theForm.result_set1.value=mystr3
> 
> }
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184529
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=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to