~jstys-z/helioviewer.org/client5

« back to all changes in this revision

Viewing changes to lib/jquery/jquery.ui-1.6rc2/tests/visual/draggable.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 Draggable</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.draggable.js"></script>
9
 
        <script type="text/javascript">
10
 
        $(function() {
11
 
                $("#draggable").draggable();
12
 
        });
13
 
        </script>
14
 
</head>
15
 
<body>
16
 
 
17
 
<ul class="plugins">
18
 
<li>
19
 
        Draggable
20
 
        <div id="draggable"></div>
21
 
</li>
22
 
</ul>
23
 
 
24
 
</body>
25
 
</html>