Delay

HTML

<div id="test">jQuery UI outerHeight boolean bug</div>

CSS

#test {
 width: 100px;
 height: 100px;
 background: #ffb;
 padding: 10px;
 border: 2px solid #999;
}

JavaScript

$(function() {
 console.log($("#test").outerHeight(1));
 console.log($("#test").outerHeight(true));
});