JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE html>
<html>
<head>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
  
  <p><button id="test">Test</button></p>
  <p id="log"></p>

<script>
  var obj = {
    name: "Ulvi",
    test: function() {
      $("#log").append( this.name );
      $("#test").unbind("click", obj.test);
    }
  };
  var serkan={
    name:"serkani"
    };
  $("#test").click( jQuery.proxy( obj.test, serkan ) );
</script>

</body>
</html>