Advertisement
Guest User

Result from data

a guest
Aug 13th, 2014
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.03 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en" xml:lang="en">
  3. <head>
  4.     <meta charset="utf-8">
  5.     <title>Weekly Schedule Demo</title>
  6.     <link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,700' rel='stylesheet' type='text/css'>
  7.     <style type="text/css">
  8.         html { font-size: 62.5%; }
  9.         body {
  10.             font-family: 'Open Sans', Arial, sans-serif;
  11.             font-size: 1.4rem;
  12.         }
  13.         table {
  14.             width: 100%;
  15.             border-collapse: collapse;
  16.             font-weight: 300;
  17.             border: 1px solid #ccc;
  18.         }
  19.         table td,
  20.         table th {
  21.             padding: 1.3333rem;
  22.             border: 1px solid #ccc;
  23.         }
  24.         table th {
  25.             font-size: 1.6rem;
  26.             text-transform: uppercase;
  27.         }
  28.         thead td { font-weight: bold; }
  29.         .inline {
  30.             list-style: none;
  31.             margin: 0;
  32.             padding: 0;
  33.             text-align: center;
  34.             margin-bottom: 1.5rem;
  35.         }
  36.         .inline li {
  37.             display: inline-block;
  38.             margin: 0.5rem 10rem;
  39.         }
  40.         .inline li a {
  41.             text-decoration: none;
  42.             color: #AB0000;
  43.             font-weight: 300;
  44.             -webkit-transition: all 0.3s;
  45.             -moz-transition: all 0.3s;
  46.             transition: all 0.3s;
  47.         }
  48.         .inline li a:hover { color: #900; }
  49.     </style>
  50. </head>
  51. <body>
  52.     <div class="schedule">
  53.         <h2>Week Beginning </h2>
  54.         <div class="controls">
  55.             <ul class="inline">
  56.                 <li><a href="/extras/arc/hours.php?week=2014-08-11">Previous Week</a></li>
  57.                 <li><a href="/extras/arc/hours.php?week=2014-08-18">Current Week</a></li>
  58.                 <li><a href="/extras/arc/hours.php?week=2014-08-25">Next Week</a></li>
  59.             </ul>
  60.         </div>
  61.         <table>
  62.             <thead>
  63.                 <tr>
  64.                     <th>Facility</th>
  65.                     <th>Mon</th>
  66.                     <th>Tue</th>
  67.                     <th>Wed</th>
  68.                     <th>Thur</th>
  69.                     <th>Fri</th>
  70.                     <th>Sat</th>
  71.                     <th>Sun</th>
  72.                 </tr>
  73.             </thead>
  74.                             <tr>
  75.                     <td>Aztec Recreation Center</td>
  76.                                                             <td>Open 24 Hours</td>
  77.                                         <td>Open 24 Hours</td>
  78.                                         <td>Open 24 Hours</td>
  79.                                         <td>Closed</td>
  80.                                         <td>12am - 10pm</td>
  81.                                         <td>8am - 10pm</td>
  82.                                         <td>8am - 11:59pm</td>
  83.                                     </tr>
  84.                             <tr>
  85.                     <td>ARC Express</td>
  86.                                                             <td>12pm - 6pm</td>
  87.                                         <td>12pm - 6pm</td>
  88.                                         <td>12pm - 6pm</td>
  89.                                         <td>12pm - 6pm</td>
  90.                                         <td>12pm - 6pm</td>
  91.                                         <td>Closed</td>
  92.                                         <td>Closed</td>
  93.                                     </tr>
  94.                             <tr>
  95.                     <td>Aztec Aquaplex</td>
  96.                                                             <td>9am - 8pm</td>
  97.                                         <td>9am - 8pm</td>
  98.                                         <td>9am - 8pm</td>
  99.                                         <td>9am - 8pm</td>
  100.                                         <td>9am - 8pm</td>
  101.                                         <td>9am - 6pm</td>
  102.                                         <td>9am - 6pm</td>
  103.                                     </tr>
  104.                     </table>
  105.     </div>
  106.     <script type="text/javascript" src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
  107.     <script type="text/javascript">
  108.         $(document).ready(function() {
  109.             $(".controls a").click(function(e) {
  110.                 e.preventDefault();
  111.                 $.get($(this).attr("href"), function(data) {
  112.                     var $data = $.parseHTML(data);
  113.                     // console.log($(data).find(".schedule"));
  114.                     console.log(data);
  115.                     $(".schedule").fadeOut(200, function() {
  116.                         $(this).html(data).fadeIn(200);
  117.                     });
  118.                 });
  119.             });
  120.         });
  121.     </script>
  122. </body>
  123. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement