/    Sign up×
Community /Pin to ProfileBookmark

Breadcrumb on iframe.

Hi, I’m trying to implement the code below:

[CODE]
function breadcrumbs(arg){

sURL = new String(arg);
bits = new Object;
var x = 0;
var stop = 0;
var output = “<A HREF=”/index.html”>Home</A> | “;

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.getElementById(“Locate”).innerHTML= output;

}[/CODE]

On a IFRAME, I have tried many try’s to solve this case, but whit no sucess.
does any one knows how to turn this code in order to display the path on pages that are display on iframes?

Tank You.
Orlando Ribeiro

to post a comment
JavaScript

0Be the first to comment 😎

×

Success!

Help @krs123 spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.24,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...