I was developing a web site for a client of mine when I have faced this error. I was creating the dialog like the following:
<script type="text/javascript">
function bb()
{
$("#dialog").dialog({height: 1000, width: 1000, modal: true});
}
</script>
/* HTML */
<div id="dialog">dialog content..</div>