Advertisement
Guest User

Untitled

a guest
May 19th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. var hash = window.location.hash.substring(1);
  2. $("#"+hash+"").show().siblings(".test-text").hide();
  3.  
  4.  
  5. $(document).ready(function(){
  6. $('.nav-test').on('click', function(){
  7. var target = $(this).attr('href');
  8. $(target).show().siblings(".test-text").hide();
  9. });
  10. });
  11.  
  12.  
  13. Máš <a href="#main">Main </a>
  14. Což je přepínač k div
  15. <div class="id=main>
  16.  
  17. //Tvůj kontent následně script
  18.  
  19. </div>
  20.  
  21. Zkráceně
  22. v href= musí být #main_content
  23. v DIV id = "main_content"
  24.  
  25. Pak to bude
  26. href="#content2"
  27. <div id="content2"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement