tags:

views:

500

answers:

1

hi all,

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

+1  A: 

The way to initialize the height as specified in the docs is one of two ways:

without the curly braces:

div.dialog("option", "height", y);  

or with the curly braces (and without the "option"):

div.dialog({height:y}); 
munch
the first option fixed the IE issue - thx!
Fuxi