This site is mobile accessible. Press the "Tap Here" button to use a different font-size.
Smartphone icons created by Freepik - Flaticon
The appCodeName property returns the code name of the browser.
Do not rely on it! "Mozilla" is the application code name for Chrome, Firefox, IE, Safari, and Opera.
navigator.appCodeName is Mozilla
// detects and displays the application code name document.getElementById("demo").innerHTML = "navigator.appCodeName is " + navigator.appCodeName;