Created
April 28, 2009 17:31
-
-
Save ryanbriones/103275 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- testing code for Columbus JS UG member --> | |
| <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script> | |
| <script type="text/javascript"> | |
| $(function() { | |
| $('.navigation li').click(function() { | |
| $(this).parents('ul:first li').removeClass('selected').end().addClass('selected'); | |
| console.log($(this).parents('ul:first')[0]); | |
| }); | |
| }); | |
| </script> | |
| <ul class="navigation"> | |
| <li id="momentum-tab"><a href="#momentum"><span>momentum</span></a></li> | |
| <li id="FAQ-tab"><a href="#faqs"><span>faqs</span></a></li> | |
| <li id="registration-tab"><a href="#registration"><span>registration</span></a></li> | |
| <li id="meetings-tab"><a href="#meetings"><span>meetings</span></a></li> | |
| </ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment