jquery date picker
<link rel="stylesheet" href="css/jquery-ui.css" />
<script src="scripts/jquery-1.8.3.js"></script>
<script src="scripts/jquery-ui.js"></script>
<script>
$(function() {
$("#datepicker").datepicker({ minDate: 0 });
});
</script>
this loop returned records from table. Supposed it returned 5 records. The code below only show the calendar for first text box. how can I display every calendar all of tex boxese
<cfloop query="q_sale_order">
<cfinput type="text" value="#dateformat(sale_date, 'mm-dd-yy')#" id="datepicker" name="sale_date#id#" />
</cfloop>
Thanks
