Test Case Boilerplate

Fork this way...

by sawmac

HTML

<!DOCTYPE HTML>
<html>
    <head>
        <meta charset="UTF-8">
        <title>Untitled Document</title>
    </head>
    <body>
        <div id="test">blah</div>
    </body>
</html>

CSS

#test {
    width: 50%;
    background-color: red;
    border-style: solid;
    border-color: black;
    border-width: 50px;
}

JavaScript

$(document).ready(function() {
    $('html').click(function() {
        $('#test').animate({
            borderLeftWidth: 'toggle'
        });
    });
});