Advertisement
Guest User

Untitled

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