JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html>
<html>
<head>
<style>
div { width:50px; height:50px; margin:5px; float:left;
background:red; }
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(function(){
$("button").click(function(){
$(this).closest("#a").hide(500)
})
})
</script>
</head>
<body>
<button id="a">Tıkla</button>
<button>Tıkla</button>
</body>
</html>