JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE html>
<html>
<head>
  <style>
  p { background:yellow; font-weight:bold; cursor:pointer;
      padding:5px; }
  p.over { background: #ccc; }
  span { color:red; }
  </style>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
  <p>Bana tıkla!</p>

  <span></span>
<script>
$("p").on("click", function(){
  $(this).after("<p>Başka paragraf!</p>");
});
</script>

</body>
</html>