Some <td>
tag contains a string date dd/mm/yyyy
like 24/5/2012
I need to read this string date and use it to dynamically set the value of a dynamically created input date tag.
var stringDate = selectedEl.text();
anotherEl.html("<input type='date' value='" + stringDate + "'/>");
The code above has no effect. The Chrome browser just renders its empty default date picker field that contains: dd ----- yyy