async.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/>
  5. <title>jQuery async treeview</title>
  6. <link rel="stylesheet" href="../jquery.treeview.css" />
  7. <link rel="stylesheet" href="../red-treeview.css" />
  8. <link rel="stylesheet" href="screen.css" />
  9. <script src="../lib/jquery.js" type="text/javascript"></script>
  10. <script src="../lib/jquery.cookie.js" type="text/javascript"></script>
  11. <script src="../jquery.treeview.js" type="text/javascript"></script>
  12. <script src="../jquery.treeview.async.js" type="text/javascript"></script>
  13. <script type="text/javascript">
  14. $(document).ready(function(){
  15. $("#black").treeview({
  16. url: "source.php"
  17. })
  18. });
  19. </script>
  20. </head>
  21. <body>
  22. <h1 id="banner"><a href="http://bassistance.de/jquery-plugins/jquery-plugin-treeview/">jQuery Treeview Plugin</a> Demo</h1>
  23. <div id="main">
  24. <ul>
  25. <li><a href=".">Main Demo</a></li>
  26. <li><a href="source.phps">Server component used</a></li>
  27. </ul>
  28. <h4>Lazy-loading tree</h4>
  29. <ul id="black">
  30. </ul>
  31. </div>
  32. </body></html>