Bug Tracker

Opened 10 years ago

Closed 10 years ago

Last modified 10 years ago

#13339 closed bug (worksforme)

Dialog make jitter/shiver window in IE

Reported by: [email protected] Owned by:
Priority: undecided Milestone: None
Component: unfiled Version: 1.8.2
Keywords: Cc:
Blocked by: Blocking:

Description

When drag dialog in v1.8.2 and 1.9.0 the window behind shiver, the page scrolls up and down quickly. I don't know well how to explain it. I let you a url where some people talk about it. I solved it migrating to v1.7.2. Thanks.

Forum discussion : http://forum.jquery.com/topic/jquery-ui-dialog-positioning-not-working-in-ie-8

Change History (3)

comment:1 Changed 10 years ago by scottgonzalez

Resolution: worksforme
Status: newclosed

Works just fine for me: core 1.8.2 + UI 1.9.1 and core 1.9.0 + UI 1.10.0. If you can provide a reduced test case showing the problem, please file the issue at http://bugs.jqueryui.com

comment:2 Changed 10 years ago by [email protected]

Here is an simple example. Thanks.

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
  <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
  <link rel="stylesheet" type="text/css" href="http://code.jquery.com/ui/1.9.1/themes/base/jquery-ui.css" media="screen">
  <script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
  <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.1/jquery-ui.min.js"></script>
  <script type="text/javascript">
    $(document).ready(function() {
      var diag = $('<div id="ModalDialog"><\/div>');
      diag.append('<h2>DRAG ME</h2>');
      diag.dialog({
        modal:true,
        title: "<h2>Bug Example<\/h2>"
      });
      diag.dialog('open');
    });
    </script>
  </head>
  <body style="height:1000px; width:2000px;">
    <div id="ModalDialog2" style="display:none;"></div>
  </body>
</html>

comment:3 Changed 10 years ago by scottgonzalez

You're in quirks mode, which jQuery doesn't support.

Note: See TracTickets for help on using tickets.