Skip to main content

Bug Tracker

Side navigation

#4175 closed bug (worksforme)

Opened February 17, 2009 05:14PM UTC

Closed May 10, 2009 02:16PM UTC

Last modified March 14, 2012 02:44PM UTC

jQuery 1.3.2pre: Dialog broken in IE7

Reported by: Nikola Owned by: john
Priority: undecided Milestone: 1.3.2
Component: core Version: 1.3.1
Keywords: 1.3.2, dialog Cc:
Blocked by: Blocking:
Description

Using jQuery 1.3.2pre the Dialog windows doesnt open in MSIE.

Here's a test case based on a Dialog example Richard put together in the UI group.

http://jsbin.com/anota/edit

Attachments (0)
Change History (4)

Changed February 17, 2009 07:27PM UTC by john comment:1

component: unfilledcore
resolution: → fixed
status: newclosed

Fixed in SVN rev [6215] by Brandon.

Changed February 28, 2009 03:41PM UTC by RavenRA comment:2

resolution: fixed
status: closedreopened

This is still the case. Following simple code still breaks IE7 AND IE6:

<html>
 <head>
  <script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
  <script type="text/javascript" src="http://ui.jquery.com/testing/ui/ui.core.js"></script>
  <script type="text/javascript" src="http://ui.jquery.com/testing/ui/ui.dialog.js"></script>
 </head>
 <body>
  <div>
   <div id='coverDialog' title='zeTitel'>blah</div>
   <script>$('#coverDialog').dialog();</script>
  </div>
 </body>
</html>

Changed March 02, 2009 01:33AM UTC by dmethvin comment:3

owner: → john
status: reopenednew

Changed May 10, 2009 02:16PM UTC by dmethvin comment:4

resolution: → worksforme
status: newclosed

Sorry, but the jquery-latest.js isn't the latest at all; it's 1.3.1 so that's why this fails.

Your sample works for me with this file:

http://code.jquery.com/nightlies/jquery-nightly.js

I did have to make one additional change, which was to move the script creating the dialog outside of the outer div. Normal code would have this code run on the ready handler so it wouldn't be an issue.