Java script- function to collpase alll section on the Web

It is possible on the web to have a button to collpase all sections of a document??

Javascript is not my strongest point so any help would be very appretiated.

Thanks!

Bojana

Subject: Java script- function to collpase alll section on the Web

Bojana,

Of course it is possible to do this, but it would take a bit of coding to do it. You would have to enclose the sections of your document that you want to have disappear and reappear inside a set of DIV tags and then use javascript to toggle the display property of the DIVs from “inline” to “none”. For example, given the HTML fragement

hello world


you would write the script as follows

I hope this helps.

Subject: RE: Java script- function to collpase alll section on the Web

Thanks Dave!