I\'ve got an element
On this, there is an Event
onChange=\"myfunction(param)\".
Inside an inline event handler, this will refer to the DOM element.
this
Therefore, you can write onchange="myfunction(this)" to pass the DOM element itself to the function.
onchange="myfunction(this)"