| [ Index ] |
PHP Cross Reference of Drupal 6 (yi-drupal) |
[Summary view] [Print] [Text view]
1 <!doctype html> 2 <html> 3 <head> 4 <title>jQuery UI Static Markup Test Page</title> 5 <link rel="stylesheet" href="../../themes/base/ui.base.css" type="text/css" /> 6 <link rel="stylesheet" href="../../themes/base/ui.theme.css" type="text/css" title="ui-theme" /> 7 <script type="text/javascript" src="../../jquery-1.3.2.js"></script> 8 <script type="text/javascript" src="static.js"></script> 9 <style type="text/css"> 10 dd.plugin { margin-top: 0.3em; margin-bottom: 1em; } 11 </style> 12 </head> 13 <body style="font-size: 62.5%;"> 14 15 <dl id="plugins"> 16 17 </dl> 18 19 <script type="text/javascript"> 20 21 var plugins = $("#plugins"); 22 23 $("accordion datepicker dialog progressbar slider tabs".split(" ")).each(function() { 24 25 var pluginName = this; 26 var url = pluginName + '/' + pluginName + ".html"; 27 28 $('<dt><a href="' + url + '">' + url + '</a></dt>').appendTo(plugins); 29 $('<dd class="plugin"></dd>').load(url, function() { 30 var plugin = $(this).find(".ui-" + pluginName).remove(); 31 $(this).empty().append(plugin); 32 }).appendTo(plugins); 33 34 }); 35 36 </script> 37 38 </body> 39 </html>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Mon Jul 9 18:01:44 2012 | Cross-referenced by PHPXref 0.7 |