Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <script>
  2. $(function() {
  3. $( "#tabs" )
  4. .tabs({event: "click"})
  5. .tabs({ active: 0 });
  6. });
  7. </script>
  8.  
  9. <script>
  10. $(document).ready(function(){
  11. if (location.hash === "#1") {
  12. $("#overlay-1").show();
  13. }
  14. $("#show-1").click(function(){
  15. $("#overlay-1").show();
  16. });
  17. $("#hide-1").click(function(){
  18. $("#overlay-1").hide();
  19. });
  20. $("#showing-1").click(function(){
  21. $("#overlay-1").show();
  22. });
  23. });
  24. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement