JSFiddle - React, Tailwind, and code Playground

by rodrigonery

HTML

<script src="http://gsgd.co.uk/sandbox/jquery/easing/jquery.easing.1.3.js"></script>
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css">
<br>
<button class="btn">teste</button>

JavaScript

$(function () {
var $botao = $('button');
    $botao.on("click", function() {
	   $(this).animate({ height: "hide" }, 200, 'easeOutQuint' );
    });
})