9896

Fork this way...

by rwaldron

HTML

<div id="test">blah</div>

CSS

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

JavaScript

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