Skip to content

Instantly share code, notes, and snippets.

@nauzilus
Last active August 29, 2015 14:22
Show Gist options
  • Save nauzilus/7ae9927d51805d6fed77 to your computer and use it in GitHub Desktop.
Save nauzilus/7ae9927d51805d6fed77 to your computer and use it in GitHub Desktop.
Toggle Tables
javascript:(function(){
var id = "df-showtables";
var style=document.getElementById(id);
if (style) {
style.remove();
}
else {
style = document.createElement("style");
style.id=id;
style.textContent = "table { border: 2px solid #BD1DEA; table-collapse: collapse; } td { border: 1px solid #BADA55; }";
document.head.appendChild(style);
}
}())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment