2008-09-20 17:30:51 +00:00
|
|
|
<!doctype html>
|
2008-06-09 05:42:13 +00:00
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<title>Simple Selectable</title>
|
|
|
|
<link rel="stylesheet" href="all.css" type="text/css" media="screen">
|
|
|
|
<script type="text/javascript" src="../../jquery-1.2.6.js"></script>
|
|
|
|
<script type="text/javascript" src="../../ui/ui.core.js"></script>
|
|
|
|
<script type="text/javascript" src="../../ui/ui.selectable.js"></script>
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(function() {
|
|
|
|
$("#selectable").selectable();
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<ul class="plugins">
|
|
|
|
<li>
|
|
|
|
Selectable
|
|
|
|
<div id="selectable">
|
|
|
|
<div>1</div>
|
|
|
|
<div>2</div>
|
|
|
|
<div>3</div>
|
|
|
|
<div>4</div>
|
|
|
|
<div>5</div>
|
|
|
|
<div>6</div>
|
|
|
|
<div>7</div>
|
|
|
|
<div>8</div>
|
|
|
|
<div>9</div>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|