Skip to content

Instantly share code, notes, and snippets.

@edeustace
Created December 6, 2010 16:32
Show Gist options
  • Save edeustace/730531 to your computer and use it in GitHub Desktop.
Save edeustace/730531 to your computer and use it in GitHub Desktop.
page.html
<html>
<head>
<title>Tees and Cees demo</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js" type="text/javascript"></script>
<script src="TeesAndCees.js" type="text/javascript"></script>
</head>
<script>
$(document).ready( function(){
//alert("jquery ready");
$("#tcLinks").teeAndCeeLinks();
} );
</script>
<body>
<h1>Tees and Cees demo</h1>
<div id="tcLinks">
<a href="myBookingpage.html">my booking page</a>
<a href="myBookingpage2.html">my booking page</a>
<a href="myBookingpage3.html">my booking page</a>
<a href="myBookingpage.html">my booking page</a>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment