I have a dynamic table list of around 40 rows each with an edit button containing a date field. I also have the following click event script trying to attach to each button via
$("body").on("click",".showEdt",function(){ alert($(this).attr("data-evalz")); });
Fiddle here.