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").one('click', function () {
      $(this).height(30)
             .css({cursor:"auto", backgroundColor:"green"});
      $(this).width(30);
      $("span").html("Yükseklik: "+$("div").height()+" Genişlik: "+$("div").width());
    });

  });
  </script>
  <style>
  div { width:50px; height:70px; float:left; margin:5px;
        background:rgb(255,140,0); cursor:pointer; }
  </style>
</head>
<body>
  <div></div>
  <span></span>
</body>
</html>