1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <link rel="stylesheet" href="portal/css/menu.css">
- <link rel="shortcut icon" href="images/favicon.png" type="image/x-icon" />
- <script src="portal/js/jquery-2.0.3.js"></script>
- </head>
- <body>
- <div id="wrapper">
- <ul class="menu">
- <%=cMenu%>
- </ul>
- </div>
- <!--initiate accordion-->
- <script type="text/javascript">
- $(function() {
-
- var menu_ul = $('.menu > li > ul'), menu_a = $('.menu > li > a');
-
- menu_ul.hide();
-
- menu_a.click(function(e) {
- e.preventDefault();
- if(!$(this).hasClass('active')) {
- menu_a.removeClass('active');
- menu_ul.filter(':visible').slideUp('normal');
- $(this).addClass('active').next().stop(true,true).slideDown('normal');
- } else {
- $(this).removeClass('active');
- $(this).next().stop(true,true).slideUp('normal');
- }
- });
-
- });
- </script>
- </body>
- </html>
|