I have a simple method to hide and show. I tried to use the live() function and even this method is not working.
I want to append the <div> and with every <div> there should be a hide and show button. Also, the <div> should hide when I click on hide. 
$(document).ready(function() {
  var max_fields = 20; //maximum input boxes allowed
  var wrapper = $(".input_fields_wrap"); //Fields wrapper
  var add_button = $(".add_field_button"); //Add button ID
  var x = 1; //initlal text box count
  
  $(add_button).click(function() { //on add input button click
    if (x <= max_fields) { //max input box allowed
      x++; //text box increment
      $(wrapper).append('<div id="myclass""><input type="text" name="mytext[]"/><button onclick class="hide_field">Hide</button><button onclick class="show_field">show</button></div>');
    }
  });
});
$("#myclass").on("click", ".hide_field", function() {
  $(this).hide();
});
$("#myclass").on("click", ".show_field", function() {
  $(this).show();
});<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div class="input_fields_wrap">
  <button class="add_field_button">Add Comment</button>
  <br>
  <div id="myclass"><input type="text" name="mytext[]">
  </div>
</div> 
     
    