Advertisement
Guest User

Untitled

a guest
Aug 4th, 2012
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.87 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <script src="jquery/jq.js"></script>
  5.     <link rel="stylesheet" href="css/style.css">
  6.     <meta charset="utf-8">
  7.     <title>CISS</title>
  8.     <script>
  9.     $(document).ready(function() {
  10.             $(document).on('click', '.mainNav', function() {
  11.             var href = $(this).attr('href');
  12.                 $('body').load(href '#mainContainer');
  13.          });
  14.     });
  15.     </script>
  16. </head>
  17. <body id="index">
  18.     <div id="site">
  19.         <div id="mainContainer">
  20.                 <div id="navContainer">
  21.                         <div class="mainNav" href="test.php" id="active">
  22.             Test
  23.             </div>
  24.                 </div>
  25.         <div id="bbContainer">
  26.             <div class="bigButton">
  27.             </div>
  28.             <div class="bigButton">
  29.             </div>
  30.         </div>
  31.         <div id="footerContainer">
  32.             <div class="footerButton" href="o_nama.php">
  33.             Test
  34.             </div>
  35.         </div>
  36.         </div>
  37.     </div>
  38. </body>
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement