over 11 years ago
How to set pre default current date in datebox before choose any other new date:
We have to follow following steps.
Step 1:- Download below 2 files.
Call both file in HTML head
Step 2:- Call below java script function on run time:-
- <script type="text/javascript"
- $(function(){
- $('.datePicker').datepick();
- var myDate = new Date();
- var prettyDate =(myDate.getMonth()+1) + '/' + myDate.getDate() + '/' +
- myDate.getFullYear();
- $(".datePicker").val(prettyDate);
- });
- </script>
<script type="text/javascript" $(function(){ $('.datePicker').datepick(); var myDate = new Date(); var prettyDate =(myDate.getMonth()+1) + '/' + myDate.getDate() + '/' + myDate.getFullYear(); $(".datePicker").val(prettyDate); }); </script>
Step 3:-
Add input text box in HTML code where display calendar.
0 Comment(s)