Jak mogę przekazać wartość z jQuery do jsf h: inputText i Backing Bean

Próbuję przekazać wartość z jquery do jsf i Backing Bean. I w tym procesie nie chcę używać f: ajax z jsf-Tag.

javaScript lub jQuery

<script>
   var myvalue = null;
   $('.classname').live('click',function(){
      myvalue = "thisvalue"+xyz;  
      // update myvalue in jsf inputtext and in bean
   });
</script>

JSF - Treść

<h:form id="myid" prependId="false">

  <h:inputText id="fragment" value="#{myBean.changevalue}">
  <!-- please do not use here f:ajax or p:ajax so on. -->

</h:form>

Zawartość fasoli

private String changevalue;

public String getChangevalue() {
  return changevalue;
}

public void setChangevalue(String changevalue) {
  this.changevalue = changevalue;
}

questionAnswers(1)

yourAnswerToTheQuestion