1
0
-1

Can we update the hidden field by using javascript ?

    CommentAdd your comment...

    1 answer

    1.  
      1
      0
      -1

      Hello.

            It can and code example below :

      <script>
      $(document).ready( function(){

      var currentField = $('#oc_status').val();

      document.getElementById("jworkflow_status").value = currentField;
      });
      <script>


      Aorka.

        CommentAdd your comment...