JSFiddle - React, Tailwind, and code Playground

by Ian Campbell

HTML

<html>

<head>
    <script src="http://code.jquery.com/jquery-latest.js"></script>
    <!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">

<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">

<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
</head>

<body>
    <div class='pushme'>PUSH ME</div>
    <script>
        $(".pushme").click(function () {
            $(this)
                .toggleClass('glyphicon')
                .toggleClass('glyphicon-pencil')
                .text(function(i, v){
               return v === '' ? 'PUSH ME' : ''
            })
        });
    </script>
</body>

</html>