I'm a JavaScript beginner and managed to piece together to following code. It gets the job done, but I'd like to keep learning and I'm wondering if there's a more efficient/elegant way to accomplish the task.
I have an English site translated to Italian. The translated pages have identical file names, and reside in the directory 'IT'. So I put a link on every page that triggers a script to add /IT/ while maintaining the rest of the current URL. On the Italian pages a complementary script removes the directory to return to the English page.
Here's the code:
(note: my part of the site resides at domain.com/site/ in case you're wondering why the code doesn't add the /IT/ directory at the root level.)
function italian(){
var str;
var str = document.URL;
arr = str.split("/");
var URLparts;
var URLparts = arr.length;
var count;
var count = 0;
var newURL;
newURL = "";
while (count < URLparts){
newURL = newURL + arr[count];
count = count + 1;
if (count < URLparts){
newURL = newURL + "/";
}
switch(count){
case 4:
newURL = newURL + "IT/";
break;
}
}
window.location = newURL;
}
What can I work on to improve it? I'm certainly willing to put in the leg work. If you can point me in the direction of things to research, I'm happy to take it from there.
Thanks!