Team:KAIST-Korea/jihan

From 2011.igem.org

(Difference between revisions)
Line 14: Line 14:
/-->
/-->
-
 
-
<script>
 
-
//Configure the script here
 
-
 
-
// Do not edit below
 
-
 
-
// Loop through the URL
 
-
function buildDepth(array,count) {
 
-
var depthStr="";
 
-
for (i=0;i<count;i++)
 
-
{
 
-
depthStr=depthStr + array[i] + "/" ;
 
-
}
 
-
return depthStr;
 
-
}
 
-
 
-
// The function
 
-
function buildBreadCrumbTrail(page) {
 
-
// Declare vars
 
-
var constituentFolders = new Array();
 
-
var currentURL = page;
 
-
 
-
// Split the URL
 
-
constituentFolders=currentURL.split("/");
 
-
 
-
// Start with a link to the team home page
 
-
var outputStr="<a href='https://2011.igem.org/Team:KAIST-Korea'>Home</a>";
 
-
 
-
// Loop through the URL
 
-
for (count=2;count<(constituentFolders.length);count++)
 
-
{
 
-
outputStr=outputStr + "<a href='https://2011.igem.org"+ buildDepth(constituentFolders,count) + constituentFolders[count] + "'>" + capitaliseFirstLetter(constituentFolders[count]).replace(/-/gi," ") + "</a>";
 
-
}
 
-
 
-
// Write to the div
 
-
$("#breadcrumbs").html(outputStr);
 
-
}
 
-
 
-
// Capitalize the first letter
 
-
function capitaliseFirstLetter(string) {
 
-
    return string.charAt(0).toUpperCase() + string.slice(1);
 
-
}
 
-
 
-
// Start the script upon page load
 
-
window.onload=function() {
 
-
buildBreadCrumbTrail(window.location.pathname);
 
-
}
 
-
</script>
 
<style type="text/css">
<style type="text/css">
Line 67: Line 19:
/* IGEM stuff */
/* IGEM stuff */
-
#breadcrumbs{
 
-
position:absolute;
 
-
top:12px;
 
-
left:195px;
 
-
}
 
-
#breadcrumbs a{
 
-
padding-right:35px;
 
-
color:black;
 
-
}
 
#content {border:none; position:relative; top:-20px; background-color:transparent;}
#content {border:none; position:relative; top:-20px; background-color:transparent;}

Revision as of 09:57, 7 August 2011