Scroll bar defaulted in the middle of a dialog box with long text
Hello I use Jquery UI dialog box to put in some long text.
Once I open the dialog box, it shows like this in default (It should show the upper part of the dialog box):I try to change the $('.ui-dialog').css("top", "0px");
to push the scroll bar to the top, but it is not working. Is there anyway 开发者_如何学JAVAI can fix this?
Try this
$('.ui-dialog').scrollTop(0);
精彩评论