JSFiddle - React, Tailwind, and code Playground

by icntfan

HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
                    "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
  
  <script>    
$(document).ready(function() {
    $("div").click(function () {
      $(this).css("background-color","blue");
      $(this).css("margin","50px");
      $(this).css("padding","10px");
      $(this).css("font-family","tahoma");
      $(this).html("Bu kutu artık mavidir.");      
    });
});
  </script>
  <style>
  div { width:80px; height:80px; background-color:red; color: white; }
  </style>
</head>
<body>
    <div>Bu kutu kırmızıdır.</div>
</body>
</html>