File: markup_input.html

package info (click to toggle)
libjs-twitter-bootstrap-datepicker 1.3.1%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,156 kB
  • ctags: 218
  • sloc: makefile: 134; python: 30
file content (17 lines) | stat: -rw-r--r-- 445 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html>
    <head>
        <link rel="stylesheet" href="script/common.css">
        <script src="script/common.js"></script>
        <script>
            function setup(){
                $('input').datepicker({
                    format: 'mm-dd-yyyy'
                });
            };
        </script>
    </head>
    <body data-capture="input, .datepicker">
        <input type="text" value="02-16-2012">
    </body>
</html>