username@email.com
2025-05-21 a980cd04341d71216e0f59bd4b7327fe9fc50032
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Timepicker Example Page</title>
    <link type="text/css" href="css/ui-lightness/jquery-ui-1.7.2.custom.css" rel="stylesheet" />
    <style type="text/css">
        body{ font: 80% "Trebuchet MS", sans-serif; margin: 50px;}
    </style>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
    <script type="text/javascript" src="js/UICommonDate.js"></script>
    <script type="text/javascript" src="js/timepicker.js"></script>
    <script type="text/javascript">
        $(document).ready(function () {
            $('#datetime').datepicker({
                duration: '',
                showTime: true,
                constrainInput: true
            });
        });
</script>
</head>
<body>
    <p>
        <input type="text" name="datetime" id="datetime" value="" />
    </p>
</body>
</html>