javascript - document.getElementById("id") in onchange parameter -


i working on erp program needto write data to , from database. here send data input field, therefore call specific javascript function on onchange event.
add value of element onchange parameter

onchange="myfunction(document.getelementbyid("myid"))" 

i tried not work:

onchange="myfunction(document.getelementbyid(\"myid\"))" 

how do this?

use

onchange="myfunction(document.getelementbyid('myid'))" 

Comments

Popular posts from this blog

get url and add instance to a model with prefilled foreign key :django admin -

css - Make div keyboard-scrollable in jQuery Mobile? -

ruby on rails - Seeing duplicate requests handled with Unicorn -