Okay so I have a table with a column date and date values like " 2013-05-03 " since the table is dynamically filled. I have converted the date using php and the date now looks like " 03/05/2013"
php conversion:
<td> <?php echo date("d/m/Y", strtotime($row['date'])) ?> </td>
Since I have a edit functionality in my page and I also use I want to convert the date back to its original format so that chrome could recognize it
var date = new Date(feed date in dd/mm/yyyy format);
$("#customer_date").val(date);
I tried the above method. But looks like the conversion doesn't happen. what could be a different approach? thanks!
Do a simple split and join
var date = "03/05/2013";
var newdate = date.split("/").reverse().join("-");
"2013-05-03"
As your date is really just a string the quickest way would be to split it like this.
date = "03/05/2013";
date = date.split("/").reverse().join("-");
$("#customer_date").val(date);
Example here http://jsfiddle.net/GNFGP/1
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With