Guest User

Untitled

a guest
Nov 20th, 2014
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. function showDiv() {
  2. var div = document.getElementById('extra');
  3. if(div.style.display == "none"){
  4. console.log("DISPOLAY");
  5. div.style.display = "block";
  6. }else{
  7. console.log("hide");
  8. div.style.display = "none";
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment