I have been able to successfully get another elements onclick function by doing this:
document.getElementById(this.options[this.selectedIndex].text).getAttribute('onclick')
this gives me the exact text that I want to put into a different elements onchange event, so I thought I could do this:
<select onchange="document.getElementById(this.options[this.selectedIndex].text).getAttribute('onclick')">
This does not work though. Does anyone have any ideas, I am stumped! Thanks so much in advance!
onchangeproperty in your HTML. Instead you should bind the event to a function from a separate script -- then you won't have this problem. – Ian Henry Mar 7 '11 at 18:51thisin the first code snippet? – Matt Ball Mar 7 '11 at 18:52