Dhtml folding menu tree

ok i know its kinda weak but hey lol.. I got this script from dynamic drive to make a folding tree menu..the question is how do i remove the pictures in from of menu choices that dont have sub menus any ways you can check the code out <<<HERE>>> (<!-- m --><a class="postlink" href="http://www.bspassoc.com/gal.html">http://www.bspassoc.com/gal.html</a><!-- m -->)<br />
<br />
thanks in advance<!--content-->find this bit in your code<br />
<br />
var head="display:''"<br />
img1=new Image()<br />
img1.src=http://www.webdeveloper.com/forum/archive/index.php/"fold.gif"<br />
img2=new Image()<br />
img2.src=http://www.webdeveloper.com/forum/archive/index.php/"open.gif"<br />
<br />
make it this now<br />
<br />
var head="display:''"<br />
img1=new Image()<br />
img1.src=http://www.webdeveloper.com/forum/archive/index.php/""<br />
img2=new Image()<br />
img2.src=http://www.webdeveloper.com/forum/archive/index.php/""<br />
<br />
this will display black dot and a black circle is you dont want that make a gif called pic.gif that the same colour as background of menu<br />
<br />
and do this<br />
<br />
var head="display:''"<br />
img1=new Image()<br />
img1.src=http://www.webdeveloper.com/forum/archive/index.php/"pic.gif"<br />
img2=new Image()<br />
img2.src=http://www.webdeveloper.com/forum/archive/index.php/"pic.gif"<br />
<br />
hope this answers you q<br />
good luck<br />
Rich<!--content-->o and by the way, this menu wont work for 13% of users becasuse java wont be enabled<!--content-->well if it works for 87% of people then its all good lol:D<!--content-->that true, but your limiting you users may i suggest a no script alternative<br />
<br />
so you have your menu<br />
<br />
<script><br />
blah blah blah<br />
</script><br />
<noscript><br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"page1.htm">Page1</a><br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"page2.htm">Page2</a><br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"page3.htm">Page3</a><br />
</noscript><br />
<br />
This way users with java disabled can still use your site ??<br />
<br />
Rich<!--content-->
 
Back
Top