Moving a form-window under FF or IE7

Moving a form-window under FF or IE7


Hi,
I am testing a very simple dialog window, open by pressing a button.
In the dialog window I have an html form. The window is correctly
displayed with FF and IE7 but, for IE7, the form "doesn't follow" the
window when the window is moved by pressing the title bar.
Any idea ? Is jquery-1.3 not yet compatible with IE7 ?
Libraries version:
jquery-1.3.js
jquery-ui-personalized-1.6rc5.js
$(document).ready(function()
{
$("#myDialog").hide();
$('#myButton').click(function()
{
$("#myDialog").dialog(
{
width:450,
height: 300,
position:"center",
resizable:false
});
});
});
<div id='myDialog' >
<form action='' id='myForm'>
...
</form>
</div>
<button type="submit" class="ui-state-default ui-state-hover ui-
corner-all" id="myButton">Open</button>