Guest User

Untitled

a guest
Jun 14th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. const url = window.location.href
  2. const title = document.getElementById("title")
  3.  
  4. if(url.match(".it")) {
  5. title.append("Benvenuto!")
  6. } else if(url.match(".de")) {
  7. title.append("Herzlich Willkommen!")
  8. } else {
  9. title.append("Welcome!")
  10. }
Add Comment
Please, Sign In to add comment