JSFiddle - React, Tailwind, and code Playground

by iskeltan

HTML

<html>
    <head>
        <script src="http://code.jquery.com/jquery-1.8.3.min.js" type="text/javascript"></script>
    </head>
<body>
    <div id="alkisla">0</div>
</body>
</html>

CSS

body{ background:#ddd; font-family:Arial; font-size:11pt; }
#alkisla{ border:3px solid white; width:250px; padding:10px; margin:0 auto; margin-top:20px; }

JavaScript

$(function(){
    $("#alkisla").click(
        function(){
            var valu = $(this).val();
             alert(valu);                         
        }        
    );
});