Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. <script type="text/javascript">
  2.  
  3. $( "#ideaszlaku_inactive" ).click(function() {
  4. document.getElementById("ideaszlaku_inactive").style.display ="none";
  5. document.getElementById("ideaszlaku_active").style.display ="block";
  6. document.getElementById("opisszlaku_active").style.display ="none";
  7. document.getElementById("opisszlaku_inactive").style.display ="block";
  8. $('#info_opisszlaku').hide();
  9. $('#info_ideaszlaku').show();
  10. $('#info_content').hide();
  11. $('#idea_content').show();
  12. $('#idea_content').addClass('fadeInLeftBig');
  13.  
  14. });
  15.  
  16. $( "#opisszlaku_inactive" ).click(function() {
  17. document.getElementById("ideaszlaku_active").style.display ="none";
  18. document.getElementById("ideaszlaku_inactive").style.display ="block";
  19. document.getElementById("opisszlaku_inactive").style.display ="none";
  20. document.getElementById("opisszlaku_active").style.display ="block";
  21. $('#info_opisszlaku').show();
  22. $('#info_ideaszlaku').hide();
  23. $('#idea_content').hide();
  24. $('#info_content').show();
  25. $('#info_content').addClass('fadeInLeftBig');
  26. });
  27. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement