Error validation not working on cloned field using jquery validate plugin

Error validation not working on cloned field using jquery validate plugin

Currently working jquery clone with jquery validation.

  1. In the first scenario with my current code where I can able to valdiate original fields. In the top i will get error count.
  2. In the second scenario if the user enter in any of the duplicate row field then validation should happen. But currently this one is not happening

here is the code which i tried but still no use


 $(".cloned_field").each(function() { if(($(this).val().length > 0)){ bind_validation(); } });

https://jsfiddle.net/karthic2914/h3vh2pLm/1/