juniorsabbath

Untitled

Jun 16th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function myFunction() {
  2.     var x = document.getElementById('myDIV');
  3.     if (x.style.display === 'none') {
  4.         x.style.display = 'block';
  5.     } else {
  6.         x.style.display = 'none';
  7.     }
  8. }
Add Comment
Please, Sign In to add comment