I want to convert date string to Date by javascript, use this code:
Date
var date = new Date(\'2013-02-27T17:00:00\'); alert(date);
Try using moment.js. It goes very well and in similar fashion with all the browsers. comes with many formatting options. use moment('date').format("") instead of New Date('date')