JSFiddle - React, Tailwind, and code Playground

by mtenschert

JavaScript

var initial_zendesk_totalPath = window.location.pathname;
  var initial_zendesk_paths = initial_zendesk_totalPath.split("/"); // string to [en, ski-rental, france, ...]
  var initial_zendesk_paths_lang_country_paths_ready = initial_zendesk_paths[2];
  var initial_zendesk_paths_lang_country = initial_zendesk_paths_lang_country_paths_ready.split("-"); // extract page name
  var initial_zendesk_lang = initial_zendesk_paths_lang_country[0];




  window.setTimeout(function() {
    window.location.href = "https://www.alpinresorts.com";
  }, 2000);