Horje

How to check browser support for <template>

Test template Support

index.html
Example: HTML
<script>
if (document.createElement("template").content) {
  document.write("Your browser supports template!");
} else {
  document.write("Your browser does not supports template!");
}
</script> 

Output should be:

How to check browser support for <template>




Type:
html
Category:
Web Tutorial
Sub Category:
HTML Tag
Uploaded by:
Admin