Skip to content

Instantly share code, notes, and snippets.

@muruganandham
Last active October 19, 2021 04:03
Show Gist options
  • Save muruganandham/46b670a15d4c3fdbdc0e526fd947fbab to your computer and use it in GitHub Desktop.
Save muruganandham/46b670a15d4c3fdbdc0e526fd947fbab to your computer and use it in GitHub Desktop.
demo
<!DOCTYPE html>
<html>
<body>
<h1>My First JavaScript</h1>
<button type="button"
onclick="function openAppOrStore() {
setTimeout(function () {
if (!openedApp) {
window.location = ""https://apps.apple.com/in/app/fielda/id1471791163"";
}
}, 25);
const parts = window.location.href.split('/');
const iosLink = ""fieldamobile://"";
try {
window.location = iosLink;
if (window.location.href.indexOf(""fieldamobile://"") !== -1) {
openedApp = true;
}
} catch (e) {
}
}
">
TAKE ME TO APP.</button>
<p id="demo"></p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment