Skip to content

Instantly share code, notes, and snippets.

@suminb
Created March 21, 2013 03:44
Show Gist options
  • Select an option

  • Save suminb/5210532 to your computer and use it in GitHub Desktop.

Select an option

Save suminb/5210532 to your computer and use it in GitHub Desktop.
ISS orientation form
<!DOCTYPE html>
<html>
<head>
<title>ISS</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<style type="text/css">
.hidden { display: none; }
</style>
</head>
<body>
I am...
<ul>
<li><a href="#" onclick="$('ul.undergraduate').toggle('medium')">Undergraduate</a>
<ul class="hidden undergraduate">
<li><a href="#" onclick="$('ul.f1').toggle('medium')">F-1</a>
<ul class="hidden f1">
<li><a href="https://www.google.com/calendar/embed?src=djv8ceovogq936osrkto01u464%40group.calendar.google.com&amp;ctz=America/Phoenix&amp;mode=AGENDA">Regular</a></li>
<li><a href="https://www.google.com/calendar/embed?src=0v5c53lucabkpartgmhgbl8oi4%40group.calendar.google.com&amp;ctz=America/Phoenix&amp;mode=AGENDA">Sponsers</a></li>
<li>Scholarship</li>
</ul>
<li><a href="#" onclick="$('ul.j1').toggle('medium')">J-1</a>
<ul class="hidden j1">
<li>Cheese Cake Factory</li>
<li>Buffalo Wild Wings</li>
</ul>
</li>
</ul>
</li>
<li><a href="#" onclick="$('ul.graduate').toggle('medium')">Graduate</a>
<ul class="hidden graduate">
<li>F-1</li>
<li>J-1</li>
</ul>
</li>
</ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment