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

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