I am using Multiple Dates Picker v1.6.1. I basically want to grab the values in the array [picked] and produce a table with the values from the array onclick.
[ Date { Thur May 09 2013 00:00:00 GMT+0100 (GMT Daylight Time) }, Date { Fri May 10 2013 00:00:00 GMT+0100 (GMT Daylight Time) } ]Dates Available | Price | Availability Thur 09 May 2013 £1500 Available$(function() { var html = '<table><tr>'; for (var i = 0; i < 6; i++) { // For each entry if (i == 3) { // Start of next row html += '</tr><tr>'; // Add row separator } // Add date in cell html += '<td>data[i].id'></td>'; } html += '</tr></table>'; // Finish up $('body').append(html); // And add to document });