JSFiddle - React, Tailwind, and code Playground

by icntfan

HTML

<!doctype html>
 
<html lang="en">
<head>
    <meta charset="utf-8" />
    <link rel="stylesheet" href="http://code.jquery.com/ui/1.9.1/themes/base/jquery-ui.css" />
    <script src="http://code.jquery.com/jquery-1.8.2.js"></script>
    <script src="http://code.jquery.com/ui/1.9.1/jquery-ui.js"></script>
    <script>
    $(function() {
        $( "input[type=submit], a, button" )
            .button()
            .click(function( event ) {
                event.preventDefault();
            });
    });
    </script>
</head>
<body>
 
<button>Bir buton elementi</button>
 
<input type="submit" value="Gönder butonu" />
 
<a href="#">ve Bir link</a>
 
 
</body>
</html>