Hello,
I am using the following javascript breadcumb script (found here http://www.javascriptsource.com/navi...eadcrumbs.html )
It works perfectly, except I'm trying to figure out how to remove and replace the "dash" ( - ) character with a space? Since some of my file names and directory names have dashes in them, it outputs:
Home > directory-name > Page Name
I'd like to replace the dash with a space, so it outputs
Home > Directory Name > Page Name
ThanksCode: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>"); }



Reply With Quote

Bookmarks