JSFiddle - React, Tailwind, and code Playground

HTML

<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.0/jquery-ui.js"></script>
    <div id="toggle">
        Bacon ipsum dolor sit amet porchetta ribeye prosciutto salami pastrami meatloaf brisket tail. Kielbasa turkey filet mignon, short loin pig shank leberkas swine frankfurter shoulder ham pancetta. 
        <p />
        <form action="." method="post" >
            <fieldset>
                <legend>Your Information</legend>

                <div>
                    <label for="FirstName">First name</label>
                </div>
                <div>
                    <input id="FirstName" name="FirstName" type="text" value="" />
                </div>

                <div class="editor-label">
                    <label for="LastName">Last name</label>
                </div>
                <div>
                    <input id="LastName" name="LastName" type="text" value="" />
                </div>
                <p>
                    <input type="submit" value="Register" />
                </p>
            </fieldset>
        </form>
    </div>

JavaScript

$(document).ready(function() {
                $("#toggle").hover(function () {
                    $(this).effect("shake", { direction: "up", times: 1, distance: 40}, 1000);
                });
            });