Table of content Generator
Copy Your Table Of Content Code
Copy To Clipboard
<script>
function off(){
document.getElementById("mode").style.cssText = "display:none;";
document.getElementById("off").style.cssText = "display:none;";
document.getElementById("on").style.cssText = "display:block;";
document.getElementById("table").style.cssText = "width:initial;";
}
function on(){
document.getElementById("mode").style.cssText = "display:block;";
document.getElementById("off").style.cssText = "display:block;";
document.getElementById("on").style.cssText = "display:none;";
document.getElementById("table").style.cssText = "width:90%;";
}
</script>
No comments:
Post a Comment