Reputation: 7599
i'm experiencing problems with the jQuery dialog under IE8:
i'm first initializing the dialog, then change its height through the options:
div.dialog("option",{"height":y});
under firefox, anything is nice, but under IE the box is missing some height (about 50px), so i'm getting ugly vertical scrollbars. any ideas what could be wrong?
thx
Upvotes: 0
Views: 4831
Reputation: 23
You can set the height and width of the field so that once the dialog has been shown it reset the style of that field.
show: {
effect: 'puff',
complete: function () {
$('#modifySubmit').css({
height: "30px",
width: "90px"
});
}
Upvotes: 1
Reputation: 1
I was a little different problem. When window size changed, I changed the size of the dialog. In ie6 it does not work correctly. Help here is the solution.
var heightOfHeaderDialog = 35;
div.height(y-heightOfHeaderDialog);
Upvotes: 0