File: markup_component.html

package info (click to toggle)
libjs-twitter-bootstrap-datepicker 1.3.1%2Bdfsg1-4
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,156 kB
  • sloc: makefile: 128; python: 30
file content (20 lines) | stat: -rw-r--r-- 568 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!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=".date, .datepicker">
        <div class="input-append date">
            <input type="text" value="12-02-2012">
            <span class="add-on"><i class="icon-th"></i></span>
        </div>
    </body>
</html>