Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. <ul class="nav navbar-nav">
  2. <li class="active">
  3. <a href="#personal" data-toggle="tab">Personal Info</a>
  4. </li>
  5. <li>
  6. <a href="#con-sib" data-toggle="tab">Contacts/Siblings</a>
  7. </li>
  8. <li>
  9. <a href="#state-fed" data-toggle="tab">State/Federal</a>
  10. </li>
  11. <li>
  12. <a href="#eth" data-toggle="tab">Ethnicity</a>
  13. </li>
  14. <li>
  15. <a href="#placement" data-toggle="tab">Placement</a>
  16. </li>
  17. <li>
  18. <a href="#medical" data-toggle="tab">Medical</a>
  19. </li>
  20. <li>
  21. <a href="#sch-release" data-toggle="tab">School Release</a>
  22. </li>
  23. </ul>
  24.  
  25. $(document).ready(function() {
  26. var hash = window.location.hash;
  27.  
  28. if (hash) {
  29. var selectedTab = $('.nav li a[href="' + hash + '"]');
  30. selectedTab.trigger('click', true);
  31. }
  32. });
  33.  
  34. $(document).ready(function () {
  35. $('.active').hide();
  36. var hash = window.location.hash;
  37.  
  38. if (hash) {
  39. var selectedTab = $('.nav li a[href="' + hash + '"]');
  40. selectedTab.trigger('click', true);
  41. }
  42. });
  43.  
  44. <script src="jquery.min.js"></script>
  45. <script src="bootstrap.min.js"></script>
  46. <script>
  47. (function(){
  48. // your code here
  49. })();
  50. </script>
  51. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement