Hello
I am a newbie trying to use a script i found on a website. it works well. however my categories (subfolders) are displayed as hyperlinks. how can i disable that?
here is the script
this code below is placed in an external js file
the following code is placed within the body tagCode:function breadcrumbs() { sURL = new String; bits = new Object; var x = 0; var stop = 0; var output = "<div class=topnav><a href=/>home</a> » "; sURL = location.href; sURL = sURL.slice(8,sURL.length); chunkStart = sURL.indexOf("/"); sURL = sURL.slice(chunkStart+1,sURL.length) while(!stop){ chunkStart = sURL.indexOf("/"); if (chunkStart != -1){ bits[x] = sURL.slice(0,chunkStart) sURL = sURL.slice(chunkStart+1,sURL.length); } else { stop = 1; } x++; } for(var i in bits){ output += "<a href=\""; for(y=1;y<x-i;y++){ output += "../"; } output += bits[i] + "/\">" + bits[i] + "</a> » "; } document.write(output + document.title); document.write("</div>"); }
while this part is in the head tagHTML Code:<script type="text/javascript"> <!-- breadcrumbs() //--> </script>
HTML Code:<script type="text/javascript" src="autoBreadcrumbs.js"></script>



Reply With Quote
Bookmarks