This Scripts Redirects to different pages according to the Language of your Browser, instead of the Alert message you could use
if (language.indexOf('en') > -1) document.location.href = 'English.html';
else if (language.indexOf('nl') > -1) document.location.href = 'dutch.html';
And So on
|
|