How to apply datepicker on each row by using jQuery
I have a HTML dynamic table, and i applied datepicker by using this code.
I want solution using jQuery
<script>
$(document).ready(function () {
$("#EditTable input[type=datetime]").each(function () {
var q = ($(this).closest("tr").find("td:nth-child(1)").text());
var dd = ($(this).closest("tr").find("input[type=datetime]").datepicker());
})
})
</script>