Guest User

Untitled

a guest
Apr 24th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. <script type="text/javascript" language="JavaScript">
  2. <!--
  3. var i = 0;
  4. function toggle(a)
  5. {
  6. var e = document.getElementById(a);
  7.  
  8.  
  9. // element exists
  10. if(!e)return true;
  11.  
  12. // switch
  13. if(e.style.display=="none")
  14. {
  15. e.style.display="block"
  16. }
  17. else
  18. {
  19. e.style.display="none"
  20. }
  21.  
  22.  
  23.  
  24. return true;
  25. }
  26.  
  27. function test()
  28. {
  29.  
  30. var x = document.getElementById('MSOZoneCell_WebPartWPQ4');
  31.  
  32. x.style.display ="none"
  33.  
  34. }
  35. test();
  36.  
  37.  
  38.  
  39. </script>
  40.  
  41. <style type="text/css">
  42. <!--
  43.  
  44.  
  45. #MSOZoneCell_WebPartWPQ4{display:none;}
  46.  
  47.  
  48. .dbox{
  49. width:500px;
  50. border:1px solid #00AFFF;
  51. padding:15px;
  52. font-family:Arial;
  53. font-size:15px;
  54. font-weight:normal;
  55. color: #000000;
  56. background-color:#F9FCFF;
  57.  
  58. margin: 5px 0px 10px 0px;
  59. }
  60. -->
  61. </style>
  62.  
  63.  
  64. <a href="#" onclick="return toggle('MSOZoneCell_WebPartWPQ4')">click here to toggle the webpart</a>
Add Comment
Please, Sign In to add comment