Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Set predefault current date in datebox

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 833
    Comment on it

    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.

    1. jquery.datepick.js
    2. jquery.datepick.css

    Call both file in HTML head

    1. <link type="text/css" href="jquery.datepick.css" rel="stylesheet">
    2. <script type="text/javascript" src="jquery.datepick.js"&gt;&lt;/script>

    Step 2:- Call below java script function on run time:-

    1. <script type="text/javascript"
    2. $(function(){
    3. $('.datePicker').datepick();
    4. var myDate = new Date();
    5. var prettyDate =(myDate.getMonth()+1) + '/' + myDate.getDate() + '/' +
    6. myDate.getFullYear();
    7. $(".datePicker").val(prettyDate);
    8. });
    9. </script>

    Step 3:-

    Add input text box in HTML code where display calendar.

    1. <input type="text" class="datePicker">

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: