I am using asp.net web forms and have an event fired when some drop down selection changes. Event is not in the code behind , instead it is a javascript method that is executed when the event fires. I need to change the text of some label according to the value changed in the dropdown.
I am a newbie to javascript, couldn't find a way to access the "Text" property of the label. Can someone help pls ?
<script type="text/javascript">
function myMethod(sender, args) {
............
}
</script>