summaryrefslogtreecommitdiffstats
path: root/js/vendor/jquery-timepicker/tests/dialog.html
blob: ca2bbb9cd673779d7ca8a785072e1f516877744e (plain)
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
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
    <script src="../include/jquery-1.5.1.min.js"></script>
    <script src="../include/jquery.ui.core.min.js"></script>
    <script src="../include/jquery.ui.widget.min.js"></script>
    <script src="jquery.ui.dialog.min.js"></script>
    <script src="../jquery.ui.timepicker.js?v=0.2.9"></script>
    
    <link rel="stylesheet" href="../include/jquery-ui-1.8.14.custom.css">
    <link rel="stylesheet" href="../jquery.ui.timepicker.css">

    <script>

        $(document).ready(function() {

            $('#for_timepicker').timepicker();
            $('#for_dialog').dialog();
        });
    </script>

</head>
<body>

<h1>Testing the timepicker within a jQuery Dialog</h1>

<div id="for_dialog">
    
    <p style="margin: 40px 20px">
        The timepicker :
        <br>
        <input type="text" id="for_timepicker">
    </p>

    
</div>

</body>
</html>