Advertisement
dropbox1349

Spoiler

Aug 3rd, 2012
309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. <div class="dokuwiki">
  2. <div class="right_page">
  3. <div class="entry-content">
  4. <script type="text/javascript" src="./zzzz_files/jquery.js"></script>
  5. <script type="text/javascript">
  6. $(document).ready(function(){
  7. $(".nonjs").removeAttr( "href"); //href is needed for users without JS
  8. $('.OS').click(function(){
  9. if($(".details").is(":visible"))
  10. {
  11. $(".details").not(":hidden").hide("slow");
  12. return true;
  13. }
  14. else
  15. {
  16. $(".OS").not(this).each(function(i) {
  17. $(".details").hide("slow");
  18. });
  19. $(".details").show("slow");
  20. return false;
  21. }
  22. });
  23. });
  24. </script>
  25. <style type="text/css">
  26. <!--
  27. .details {
  28. display: none;
  29. clear: both;
  30. padding: 2px;
  31. }
  32. .nonjs{
  33. cursor:pointer;
  34. }
  35. img {
  36. border: 0px;
  37. }
  38. -->
  39. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement