Created
March 12, 2025 08:19
-
-
Save 0XDE57/77cb01401393243a00b2a0e7cb97b3d2 to your computer and use it in GitHub Desktop.
Test if browser supports Web Serial API: https://developer.mozilla.org/en-US/docs/Web/API/Web_Serial_API
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<body> | |
<h1 id="cereal">R U 4 Cereal?</h1> | |
</body> | |
<script> | |
var header = document.querySelector("#cereal") | |
if (navigator.serial) { | |
alert("This browser supports web cereal!"); | |
header.textContent = "Web Serial API supported!"; | |
} else { | |
alert("This browser does NOT support web cereal :("); | |
header.textContent = "Web Serial API NOT supported."; | |
} | |
</script> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment