JSFiddle - React, Tailwind, and code Playground

by ironicmuffin

HTML

<html>
<head>
    <link href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css" rel="stylesheet" />
    <script type="text/javascript" src="http://code.jquery.com/jquery-1.8.3.js"></script>
        <script type="text/javascript" src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
</head>

   

    <body>
    
        <button id="button-hi" class="bigy-button">Hi!</button>
        
        <button class="bigy-button">I'm a button too!!</button>

    </body>

JavaScript

/*$("button").button();
    
$("button#button-hi").css("color", "red");


$(".bigy-button").css("margin", "10px");
*/



var btn = jquery("#button-hi");
btn.button();