JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<a href="http://ulviercan.com">ulviercan.com a git</a>
<div id="log"></div>
<script>
$("a").click(function(event) {
event.preventDefault();
$('<div/>') .append('varsayılan ' + event.type + ' olayı engellendi')
.appendTo('#log');
});
</script>
</body>
</html>