Last active
April 26, 2022 12:56
-
-
Save bilelz/f9c3540b3f3a900845546f53d55c6604 to your computer and use it in GitHub Desktop.
HTML's < dialog > element - feature detection
This file contains hidden or 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
if (!!document.createElement("dialog").showModal) { | |
console.log('Native support: OK 😀') | |
}else{ | |
console.log('Native support: KO 😭') | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment