Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <script>
  2. $(document).ready(function() {
  3. if (location.hash) {
  4. $("a[href='" + location.hash + "']").tab("show");
  5. }
  6. $(document.body).on("click", "a[data-toggle='tab']", function(event) {
  7. location.hash = this.getAttribute("href");
  8. });
  9. });
  10. $(window).on("popstate", function() {
  11. var anchor = location.hash || $("a[data-toggle='tab']").first().attr("href");
  12. $("a[href='" + anchor + "']").tab("show");
  13. });
  14. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement