Skip to content

Instantly share code, notes, and snippets.

@ceej989
Created July 17, 2014 20:53
Show Gist options
  • Save ceej989/8403e3e13a1e183459c2 to your computer and use it in GitHub Desktop.
Save ceej989/8403e3e13a1e183459c2 to your computer and use it in GitHub Desktop.
for (var i = 16;i <41 ; i++) {
document.getElementById("ctl00_ctl39_g_e223e6e7_613f_4a25_9890_7e9ab8f57f71_ctl01_ctl00_ctl00").children[0].children[0].children[i].children[1].style.visibility="hidden";
document.getElementById("ctl00_ctl39_g_e223e6e7_613f_4a25_9890_7e9ab8f57f71_ctl01_ctl00_ctl00").children[0].children[0].children[i].children[7].style.visibility="hidden";
};
}
@ceej989
Copy link
Author

ceej989 commented Jul 17, 2014

function hide(ele) {
ele.style.visibility="hidden"
};

function hide_table() {
var foo = document.getElementById("ctl00_ctl39_g_e223e6e7_613f_4a25_9890_7e9ab8f57f71_ctl01_ctl00_ctl00").children[0].children[0]
for (var i=16; i<41; i++) {
hide(foo.children[i].children[1]);
hide(foo.children[i].children[7]);
};
};

hide_table();

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment