I'd recommend:
http://www.dynamicdrive.com/dynamici...tchcontent.htm
If you don't want the pluses and minuses, simply change this part:
Code:
var contractsymbol='- ' //HTML for contract symbol. For image, use: <img src="whatever.gif">
var expandsymbol='+ ' //HTML for expand symbol.
to:
Code:
var contractsymbol=' ' //HTML for contract symbol. For image, use: <img src="whatever.gif">
var expandsymbol=' ' //HTML for expand symbol.
Another script to consider is:
http://www.dynamicdrive.com/dynamici...chcontent2.htm
Again, on that one, if you don't want the symbols, in this case where it has:
Code:
var contractsymbol='minus.gif' //Path to image to represent contract state.
var expandsymbol='plus.gif' //Path to image to represent expand state.
Use a transparent .gif like so:
Code:
var contractsymbol='transparent.gif' //Path to image to represent contract state.
var expandsymbol='transparent.gif' //Path to image to represent expand state.
Bookmarks