I\'ve got an element
On this, there is an Event
onChange=\"myfunction(param)\".
You can pass this to myFunction which will be the input
this
myFunction
input
then myFunction could look like this:
function myFunction(obj) { var value = obj.value; // the value of the textbox }