I have date data being returned from a server in the following format through JSON
/Date(1139443200000)/
If I try to display this on a web browser using the following code snippet:
success: function( rows ) {
if( rows.d[0] ) {
$.each( rows.d, function( index, row ) {
$("div").append( row.OpenDate );
the date gets displayed on the screen like this:
/Date(1139443200000)/
How do I format this to display like this
09-02-2006
and
09-02-2006 - 00:00