here is my date 10/04/2013 i convert it oct 4,2013.
<input type="text" required="required" name="dateofissue" id="dateofissue" readonly>
and here is javascript who get current date:
var now = new Date();
document.getElementById("dateofissue").value=(now.getMonth()+1)+'/'+now.getDate()+'/'+now.getFullYear();
it shows date in format 10/04/2013.i want when it shows date in this format i get this date and converrt it in oct 4,2013
Fiddle Here