Here is the structure of my layout:
<html>
<head>
stuff goes here
</head>
<body>
<div id="master">
<div id="toolbar">
<input type="text" id="foo">
</div>
<div id="content">
Lots of content here
</div>
</div>
</body>
</html>
The '#master' div is used as a container for a jQuery UI dialog. I want the content inside the '#content' div to be scrollable, but I do not want the '#toolbar' to be scrollable. Is it possible to achieve this using jQuery UI's dialog?