aboutsummaryrefslogtreecommitdiffstats
path: root/demos/menu/default.html
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2012-06-18 12:43:55 -0400
committerScott González <scott.gonzalez@gmail.com>2012-06-18 12:43:55 -0400
commit35f7a67c09fc0862b5a639ec867b061d248927a7 (patch)
tree8e4e23763377d085027ac9c0fdbfb951c7a35fa6 /demos/menu/default.html
parent378dacfda142a7f4681e79601924a47c362dcee1 (diff)
downloadjquery-ui-35f7a67c09fc0862b5a639ec867b061d248927a7.tar.gz
jquery-ui-35f7a67c09fc0862b5a639ec867b061d248927a7.zip
Menu demos: Cleanup.
Diffstat (limited to 'demos/menu/default.html')
-rw-r--r--demos/menu/default.html19
1 files changed, 7 insertions, 12 deletions
diff --git a/demos/menu/default.html b/demos/menu/default.html
index b1c0b9fbb..b5a0689fb 100644
--- a/demos/menu/default.html
+++ b/demos/menu/default.html
@@ -1,28 +1,25 @@
-<!DOCTYPE html>
+<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
- <title>jQuery UI Menu - Default demo</title>
- <link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="stylesheet" />
+ <title>jQuery UI Menu - Default functionality</title>
+ <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
<script src="../../jquery-1.7.2.js"></script>
<script src="../../ui/jquery.ui.core.js"></script>
<script src="../../ui/jquery.ui.widget.js"></script>
<script src="../../ui/jquery.ui.menu.js"></script>
- <link href="../demos.css" rel="stylesheet" />
+ <link rel="stylesheet" href="../demos.css">
<script>
$(function() {
- $(".demo ul").menu();
+ $( "#menu" ).menu();
});
</script>
- <style>
-
- </style>
</head>
<body>
<div class="demo">
- <ul>
+ <ul id="menu">
<li><a href="#Aberdeen">Aberdeen</a></li>
<li><a href="#Ada">Ada</a></li>
<li><a href="#Adamsville">Adamsville</a></li>
@@ -44,11 +41,9 @@
<div class="demo-description">
-<p>A menu with the default configuration. A list is transformed, adding themeing, mouse and keyboard navigation support. Try to tab to the menu and use the cursor keys to navigate.</p>
+<p>A menu with the default configuration. A list is transformed, adding theming, mouse and keyboard navigation support. Try to tab to the menu then use the cursor keys to navigate.</p>
</div><!-- End demo-description -->
-
-
</body>
</html>