I have a dialog "pop up" box that loads pictures and information, and whenever i launch the box, the page automatically scrolls all the way to the bottom and wont let me scroll back up until all the information has loaded. I have no clue why it does this. Any thoughts?
$( "#dialog-view" ).dialog({
resizable: false,
width:'auto',
fluid: true,
modal: true,
autoOpen: false,
buttons:
{
"Done": function()
{
$("#dialog-view").dialog("close");
}
}
});