~jstys-z/helioviewer.org/timeline

« back to all changes in this revision

Viewing changes to lib/jquery/jquery.ui-1.6rc2/tests/visual/selectable.html

  • Committer: V. Keith Hughitt
  • Date: 2009-03-26 19:20:57 UTC
  • Revision ID: hughitt1@kore-20090326192057-u0x8rf8sf5lmmnwh
nightly build 03-26-2009: Using alpha-channel JPEG 2000 dataset

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!DOCTYPE html>
2
 
<html lang="en">
3
 
<head>
4
 
        <title>Simple Selectable</title>
5
 
        <link rel="stylesheet" href="all.css" type="text/css" media="screen">
6
 
        <script type="text/javascript" src="../../jquery-1.2.6.js"></script>
7
 
        <script type="text/javascript" src="../../ui/ui.core.js"></script>
8
 
        <script type="text/javascript" src="../../ui/ui.selectable.js"></script>
9
 
        <script type="text/javascript">
10
 
        $(function() {
11
 
                $("#selectable").selectable();
12
 
        });
13
 
        </script>
14
 
</head>
15
 
 
16
 
<body>
17
 
 
18
 
<ul class="plugins">
19
 
<li>
20
 
        Selectable
21
 
        <div id="selectable">
22
 
                <div>1</div>
23
 
                <div>2</div>
24
 
                <div>3</div>
25
 
                <div>4</div>
26
 
                <div>5</div>
27
 
                <div>6</div>
28
 
                <div>7</div>
29
 
                <div>8</div>
30
 
                <div>9</div>
31
 
        </div>
32
 
</li>
33
 
</ul>
34
 
 
35
 
</body>
36
 
</html>