I have add button it will add a startdate textbox and end date textbox along with a pop calendar.But the calendar pop up is not working.
UPDATE
$(document).ready(function () {
$(".datepicker").each(function () {
$(this).datepicker();
});
$("#add").click(function () {
$(".container").append('<div class= "Cycleone"> <table> <tr> <td> <label ID="lblStartDate">Start Date </label> </td> <td> <input type="text" id="txtStartDate" class="datepicker"/><label id="lblEndDate" >End Date</label></td><td><input type="text" id="txtEndDate" class="datepicker"/></td></tr></table></div>');
$(".datepicker").datepicker();
})
});
Button
<div class="button">
<input type="button" id="add" name="btnAddAddress" value="Add" />
Please provide a example if possible.Thank you