I have an html element that is suppose to call 3 JS functions as its onchange event, however; it only fires off the first function. I am stumped as to why it is not doing it.
<select id="dlist" onChange="func1(); func1(); func3()"/>
func1 = function(){
//code
}
func3 = function(){
//code
}
func2 = function(){
//code
}
What could this issue be?