I have a table td as follows .
$roomRowId.append("<td onclick='updateBookingRooms(" + roomId + "," + date + ")'></td>");
When user click this td i have to call javascript function
updateBookingRooms(id,date).
id becomes true value but date is not true vaue.
For example , if updateBookingRooms(1,02/04/2013) i receive id=1 and date = 0.00012419274714356681
What is the problem?How can i retrieve original date value.