html5 input type date format to mm/dd/yyyy

http://stackoverflow.com/questions/32393962/html5-input-type-date-format-to-mm-dd-yyyy-causing-issue-in-chrome

by Damith Nuwan Sampath

HTML

<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script>
  $(function() {
    $("#datepicker").datepicker();

  });

</script>
</head>

<body>
  <p>Your Selected date Is :
    <input type="text" id="datepicker">
  </p>

CSS

p {
  color: green
}