Guest User

Untitled

a guest
Oct 23rd, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. function changeVisibleRow(id){
  2. if (document.getElementById(id).style.display == 'table-row') {
  3. document.getElementById(id).style.display = 'none';
  4. } else {
  5. document.getElementById(id).style.display = 'table-row';
  6. }
  7. }
Add Comment
Please, Sign In to add comment