Skip to content

Instantly share code, notes, and snippets.

@bilelz
Last active April 26, 2022 12:56
Show Gist options
  • Save bilelz/f9c3540b3f3a900845546f53d55c6604 to your computer and use it in GitHub Desktop.
Save bilelz/f9c3540b3f3a900845546f53d55c6604 to your computer and use it in GitHub Desktop.
HTML's < dialog > element - feature detection
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