JSFiddle - React, Tailwind, and code Playground

by mattography

JavaScript

var iOS = false,
    p = navigator.platform;

if( p === 'iPad' || p === 'iPhone' || p === 'iPod' ){
    iOS = true;
    window.location.replace("https://itunes.apple.com/us/app/reuters-tv-personalized-video/id944245256?mt=8");
}
else if (iOS === false){
    window.location.replace("http://www.reuters.tv/text/iosApp.html?ref=19178287694");
}