timestamp to javascript date
in my case i used wordpress object $wpd to get records from a mysql table. this is how i got to convert “2012-11-16 11:33:23″ to javascript’s new Date( 2012, 11, 16, 11, 33, 23, 0 ); 1234567891011121314function stampToDate( timestamp) { var q = timestamp.match( /(\d+)/g ); //because i had the format above i followed this [...]