I have a button has action which can set myBackingBean.myString, and onclick event calls js method to alert that value. I just want to get the value of myString from backing bean by using javascript.
I have a hidden output which has value from backing bean:
h:outputText id="myOutput" rendered="false" value="#{myBackingBean.myString}"
then I need to alert this value in javascript fxn which triggered by a button:
function myFunction() {
var outPut= document.getElementById("myForm:myOutput").value;
...
}
but i got Object required error. How can i fix this?
thanks in advance.