Here is my jquery code
var data='<?php echo date('D M d Y H:i:s').""; ?>';
var someDate = new Date(data);
var dd = someDate.getDate();
var mm = someDate.getMonth() + 1;
var y = someDate.getFullYear();
var someFormattedDate = mm + '/'+ dd + '/'+ y;
$("#est_date").html(someFormattedDate);
The output of the above code is
11/18/2014
But i need to display the output in the following date format
Nov 18, 2014
How is it possible in the jquery? Pls tell me any one knows?