I am getting a value in my input this way:
<input style="width:200px; display:none;" readonly="" type="text" id="abc" placeholder="30.30" value="#{position.layers}"></input>
How can I call the JavaScript function if a value changed.
function callme() {
alert("ok");
}
If I type in the value by myself, the method is called, but if the value is changed by "#{position.layers}" the function is not called.
<input style="width:200px; display:none;" readonly="" type="text" id="abc" placeholder="30.30" value="#{position.layers}" onchange="callme()"></input>