summaryrefslogtreecommitdiff
path: root/static/development-bundle/demos/tabs/ajax.html
diff options
context:
space:
mode:
authoryvesf <yvesf-git@xapek.org>2010-11-26 18:44:25 +0100
committeryvesf <yvesf-git@xapek.org>2010-11-26 18:44:25 +0100
commit06b3f727378323089ee56a24999dd97c87887cc0 (patch)
treec0ba6c0c09f119e11184115630afb72b3c298fe3 /static/development-bundle/demos/tabs/ajax.html
parentf28c098bb82406f8062a2b4c9305b73eae300372 (diff)
downloadbooksearch-06b3f727378323089ee56a24999dd97c87887cc0.tar.gz
booksearch-06b3f727378323089ee56a24999dd97c87887cc0.zip
change jquery theme, rm development stuff
Diffstat (limited to 'static/development-bundle/demos/tabs/ajax.html')
-rw-r--r--static/development-bundle/demos/tabs/ajax.html53
1 files changed, 0 insertions, 53 deletions
diff --git a/static/development-bundle/demos/tabs/ajax.html b/static/development-bundle/demos/tabs/ajax.html
deleted file mode 100644
index c06d2d1..0000000
--- a/static/development-bundle/demos/tabs/ajax.html
+++ /dev/null
@@ -1,53 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="utf-8">
- <title>jQuery UI Tabs - Content via Ajax</title>
- <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
- <script src="../../jquery-1.4.3.js"></script>
- <script src="../../ui/jquery.ui.core.js"></script>
- <script src="../../ui/jquery.ui.widget.js"></script>
- <script src="../../ui/jquery.ui.tabs.js"></script>
- <link rel="stylesheet" href="../demos.css">
- <script>
- $(function() {
- $( "#tabs" ).tabs({
- ajaxOptions: {
- error: function( xhr, status, index, anchor ) {
- $( anchor.hash ).html(
- "Couldn't load this tab. We'll try to fix this as soon as possible. " +
- "If this wouldn't be a demo." );
- }
- }
- });
- });
- </script>
-</head>
-<body>
-
-<div class="demo">
-
-<div id="tabs">
- <ul>
- <li><a href="#tabs-1">Preloaded</a></li>
- <li><a href="ajax/content1.html">Tab 1</a></li>
- <li><a href="ajax/content2.html">Tab 2</a></li>
- <li><a href="ajax/content3-slow.php">Tab 3 (slow)</a></li>
- <li><a href="ajax/content4-broken.php">Tab 4 (broken)</a></li>
- </ul>
- <div id="tabs-1">
- <p>Proin elit arcu, rutrum commodo, vehicula tempus, commodo a, risus. Curabitur nec arcu. Donec sollicitudin mi sit amet mauris. Nam elementum quam ullamcorper ante. Etiam aliquet massa et lorem. Mauris dapibus lacus auctor risus. Aenean tempor ullamcorper leo. Vivamus sed magna quis ligula eleifend adipiscing. Duis orci. Aliquam sodales tortor vitae ipsum. Aliquam nulla. Duis aliquam molestie erat. Ut et mauris vel pede varius sollicitudin. Sed ut dolor nec orci tincidunt interdum. Phasellus ipsum. Nunc tristique tempus lectus.</p>
- </div>
-</div>
-
-</div><!-- End demo -->
-
-
-
-<div class="demo-description">
-<p>Fetch external content via Ajax for the tabs by setting an href value in the tab links. While the Ajax request is waiting for a response, the tab label changes to say "Loading...", then returns to the normal label once loaded.</p>
-<p>Tabs 3 and 4 demonstrate slow-loading and broken AJAX tabs, and how to handle serverside errors in those cases. Note: These two require a webserver to interpret PHP. They won't work from the filesystem.</p>
-</div><!-- End demo-description -->
-
-</body>
-</html>