I have this definition for the jquery dialog plugin:
$("#DonateForm").dialog({
modal: true,
autoOpen: false,
minWidth: 600,
maxWidth: 700,
minHeight: 250,
maxHeight: 350,
resizable: true
});
I have a complicated DIV form like:
<div id="DonateForm">
<div id="DonateFormInner">
.. Complex form ..
</div>
</div>
But for some reason, the plugin doesn't scroll... any idea why?