JSFiddle - React, Tailwind, and code Playground

by paulyoder

HTML

<html>
<head>
  <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
  <script type="text/javascript">
    $(function() {
      $('div:not([type])').addClass('green');
      $('input:not([type])').addClass('green');
    });
  </script>
  <style type="text/css">
    .green {
      background-color: green;
    }
  </style>
</head>
<body>
  <div type="">hello</div>
  <div>world</div>
  <input value="hello" />
  <br />
  <input value="world" />
</body>
</html>