Hi I was wondering if there is any jquery function around which can take this dateTime \"2010-10-18 10:06\" and convert and split it returning \"2010/10/18\" and \"10:06\".<
Converting with DateJs should be as easy as:
var d1 = Date.parse('2010-10-18, 10:06 AM'); alert(d1.toString('dd/mm/yyyy HH:mm:ss GMT'));
It's currently the best library around