Advertisement
joey_d067

Untitled

Dec 4th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1.  
  2. function SwapDivsWithClick(div1,div2)
  3. {
  4. d1 = document.getElementById(div1);
  5. d2 = document.getElementById(div2);
  6. if( d2.style.display == "none" )
  7. {
  8. d1.style.display = "none";
  9. d2.style.display = "block";
  10. }
  11. else
  12. {
  13. d1.style.display = "block";
  14. d2.style.display = "none";
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement