1
0
-1

i used this code for the custom html button <div>
    
    <button id="estimer" value="true">estimer</button>

</div>
<script>
$(document).ready(function() {
  $('#estimer').click(function() {
    var value = $(this).val();
    if (value === 'false') {
      $(this).val('true');
    } else {
      $(this).val('false');
    }
  });
});
</script> 

and this to control the visibility of the hidden section 

    CommentAdd your comment...

    2 answers

    1.  
      1
      0
      -1

      thats the same me who posted the question its just no one answer 


        CommentAdd your comment...