Skip to content

Instantly share code, notes, and snippets.

@gotoplanb
Created February 16, 2011 04:13
Show Gist options
  • Save gotoplanb/828854 to your computer and use it in GitHub Desktop.
Save gotoplanb/828854 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head></head>
<body>
<script src="http://cdn.jquerytools.org/1.2.5/full/jquery.tools.min.js"></script>
<link rel="stylesheet" type="text/css" href="http://static.flowplayer.org/tools/css/tabs.css" />
<style>
.panes, .tabs {
width: 780px;
}
.panes div {
display:none;
padding:15px 10px;
border:1px solid #999;
border-top:0;
font-size:14px;
background-color:#fff;
}
</style>
<script>
$(function() {
// setup ul.tabs to work as tabs for each div directly under div.panes
$("ul.tabs").tabs("div.panes > div");
});
</script>
<h2>Conference room calendars</h2>
<!-- the tabs -->
<ul class="tabs">
<li><a href="#">Smart Media</a></li>
<li><a href="#">Title</a></li>
<li><a href="#">Realty</a></li>
</ul>
<!-- tab "panes" -->
<div class="panes">
<div>
<iframe src="https://www.google.com/calendar/embed?mode=AGENDA&amp;height=600&amp;wkst=1&amp;bgcolor=%23FFFFFF&amp;src=bosshardtrealty.com_39333131333638342d373435%40resource.calendar.google.com&amp;color=%238C500B&amp;ctz=America%2FNew_York" style=" border-width:0 " width="760" height="600" frameborder="0" scrolling="no"></iframe>
</div>
<div>
<iframe src="https://www.google.com/calendar/embed?mode=AGENDA&amp;height=600&amp;wkst=1&amp;bgcolor=%23FFFFFF&amp;src=bosshardtrealty.com_36393235343034312d323037%40resource.calendar.google.com&amp;color=%23856508&amp;ctz=America%2FNew_York" style=" border-width:0 " width="760" height="600" frameborder="0" scrolling="no"></iframe>
</div>
<div>
<iframe src="https://www.google.com/calendar/embed?mode=AGENDA&amp;height=600&amp;wkst=1&amp;bgcolor=%23FFFFFF&amp;src=bosshardtrealty.com_36303636373637302d383038%40resource.calendar.google.com&amp;color=%236B3304&amp;ctz=America%2FNew_York" style=" border-width:0 " width="760" height="600" frameborder="0" scrolling="no"></iframe>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment