Webmasterpals  

Go Back   Webmasterpals > Site Management > Website Programming

Reply
 
Thread Tools Display Modes
  #1  
Old 04-16-2012, 09:54 PM
sj_polanco sj_polanco is offline
Junior Member
 
Join Date: Mar 2012
Posts: 8
sj_polanco is on a distinguished road
Question javascript breadcrumbs displays subfolders as links

I want to include location based breadcrumbs on my site. i searched for free javascripts that i could use. i found this one:
Code:
/* This script and many more are available free online at
The JavaScript Source!! 
Created by: Justin Whitford | */
function breadcrumbs() {
  sURL = new String;
  bits = new Object;
  var x = 0;
  var stop = 0;
  var output = "<div id=breadcrumbs>You are here:\ <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>");
  }
My only reservation with the code is that it displays my sub folders as links. How can i prevent subfolders from displaying as links?
Reply With Quote

DirTimes Web Directory - Premium General web directory of quality websites. Submit today!

Premium Web Directory - Premium general web directory. Submit your site for Inclusion

Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT. The time now is 06:58 AM.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Webmasterpals.com (c) 2008 - All Rights Reserved