JSFiddle - React, Tailwind, and code Playground

by letanure

HTML

<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
<!--[if IE]>
  <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<style>
  article, aside, figure, footer, header, hgroup, 
  menu, nav, section { display: block; }
</style>
</head>
<body>
  <p id="hello">Hello World</p>
</body>
</html>

JavaScript

document.onreadystatechange = function() {
    if (document.readyState == 'complete' || document.readyState == 'onloaded') { // onloaded para Safari
        alert(document.readyState)
    }