Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. var hash_set = false
  2. if (window.location.hash) {
  3. var theTabAnchor = window.location.hash;
  4. alert(theTabAnchor);
  5. if (theTabAnchor == '#description' || theTabAnchor == '#calculator') {
  6. var newTabLocation = theTabAnchor;
  7. tabContainers.hide().filter(theTabAnchor).show();
  8. tabLinks.filter('[href*='+ theTabAnchor +']').addClass('current');
  9. location.href = newTabLocation;
  10. var hash_set = true;
  11. }
  12. }
  13. if (hash_set == false)
  14. {
  15. tabContainers.hide().filter(':first').show();
  16. tabLinks.filter(':first').addClass('current');
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement