php
PHP clock
PHP clock
index.php
<head>
<title>Adding a Timepicker to jQuery UI Datepicker</title>
<link rel="stylesheet" media="all" type="text/css" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<link rel="stylesheet" media="all" type="text/css" href="jquery-ui-timepicker-addon.css" />
<style type="text/css">
*{ font-size:12px; font-family:verdana; }
h1 { font-size:22px; }
.wrapper { width:900px; margin:0px auto; padding:15px;background-color:#eee; }
input { width:250px; border: 2px solid #CCC; line-height:20px;height:20px; border-radius:10px; padding:5px; }
</style>
</head>
<body>
<div class="wrapper">
<div class="example-container">
<p><b>Add only a timepicker:</b></p>
<div>
<input type="text" value="" id="basic_example_2" name="basic_example_2" />
</div>
</div>
</div>
<!--loading jQuery and other library-->
<script type="text/javascript" src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.10.3/jquery-ui.min.js"></script>
<script type="text/javascript" src="jquery-ui-timepicker-addon.js"></script>
<script type="text/javascript" src="jquery-ui-sliderAccess.js"></script>
<script type="text/javascript" src="script.js"></script>
</body>
</html>
Download : jquery-ui-timepicker-addon.js
Download : jquery-ui-sliderAccess.js
Download : jquery-ui-timepicker-addon.css
0 comments