JSFiddle - React, Tailwind, and code Playground

by olli

HTML

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0b1/jquery.mobile-1.0b1.min.css">
<script src="http://code.jquery.com/jquery-1.6.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0b1/jquery.mobile-1.0b1.min.js"></script>
<script src="http://ajax.microsoft.com/ajax/jquery.templates/beta1/jquery.tmpl.min.js"></script>
<!DOCTYPE html>
<html>
    <head>
        <title>jQuery Mobile Inline Buttons</title>
    </head>
    <body>
        
        <div data-role="page" id="master">
           <div data-role="content">
                <div class="chart-container" >
                </div>
                <div data-role="controlgroup" data-type="horizontal" data-theme="a" style="font-size:0.7em; margin-left:auto; margin-right:auto;width:100%; ">
                    <a href="index.html" data-role="button" data-theme="a">7 Days</a>
                    <a href="index.html" data-role="button" data-theme="a">30 Days</a>
                    <a href="index.html" data-role="button" data-theme="a">90 Days</a>
                </div>
            </div>
        </div>
    </body>
</html>

JavaScript

$(document).ready(function() {
 
});