I have to display the date in jsp 12:30 PM 12TH JANUARY 2000 in this format .How can i format the current date in the above format in JavaScript or using jQuery UI.
var currentDate = new Date();
currentDate.toString("hh:MM dS MMMM yyyy")
I have tried the above code but it's not working.