> <script>
> function doReset(){
>         document.getElementById("channelnotes").options.selectedIndex = 0;
>         document.getElementById("channelnotes").options
> [document.getElementById
> ("channelnotes").options.selectedIndex].value="";}
>
> </script>


Hello RVince,
would you please try in this way:
<script>
doReset = function(){
        document.getElementById("channelnotes").options.selectedIndex
= 0;
        document.getElementById("channelnotes").options
[document.getElementById
("channelnotes").options.selectedIndex].value="";
}
</script>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to