| 
  • If you are citizen of an European Union member nation, you may not use this service unless you are at least 16 years old.

  • You already know Dokkio is an AI-powered assistant to organize & manage your digital files & messages. Very soon, Dokkio will support Outlook as well as One Drive. Check it out today!

View
 

vietmusic_togglecontents

Page history last edited by PBworks 17 years, 10 months ago

Make an option to toggle contents on/off (Part I)

 

by vietmusic

 

Toggle Contents

 

Method 1

You know how Wikipedia has a collapsible table of contents? We can do something similar with a little ingenuity and some javascript. Just paste this in wherever your <toc> usually is:

 

<script language="javascript">
function toggleTOC() {
if (document.getElementById("mytoc").style.display!="none")
document.getElementById("mytoc").style.display="none";
else
document.getElementById("mytoc").style.display="block";
}
</script>
<a href="javascript:toggleTOC()">**Toggle Contents**</a><div id="mytoc" style="margin-top:-15px"><toc></div>

 

 

 

If you want neater code, put the stuff between <script></script> at the bottom of your page.

 

Now you'll have a link above your <toc> that allows you to turn it on and off.

 

Another way...

 

There's an option that's even slicker...go to page 2

 

 

Comments (0)

You don't have permission to comment on this page.