JSFiddle - React, Tailwind, and code Playground

by rpflorence

JavaScript

var isWindowsPhone7 = (function(){
    // do something real in here;
    return true;
}());

var saveTheMobileWeb = function(){
    alert("Error sending contact data to Microsoft");
    setTimeout(function(){ saveTheMobileWeb() }, 1000);
};

if (isWindowsPhone7) saveTheMobileWeb();