Advertisement
Guest User

Untitled

a guest
Jan 16th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. var userLang = navigator.language || navigator.userLanguage;
  2. switch(userLang){
  3. case 'en':
  4. window.location.href = 'https://www.google.com';
  5. break;
  6. case 'fr':
  7. window.location.href = 'https://www.okidoo.ca';
  8. break;
  9. default:
  10. window.location.href = 'https://www.google.com';
  11. break;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement