Skip to main content

Search and Top Navigation

#4381 closed bug (notabug)

Opened March 20, 2009 09:08PM UTC

Closed November 10, 2009 04:19PM UTC

IE 7 Error on jQuery UI load

Reported by: pizte Owned by:
Priority: blocker Milestone: 1.8
Component: ui.effects.core Version: 1.7.1
Keywords: animate, effects, fx Cc:
Blocked by: Blocking:
Description

I'm getting an error message in IE 7 (Windows XP) that prevents webpage from load when jQuery UI 1.7.* is loaded.

Tested on jQuery UI 1.7.0 and 1.7.1 (minified) from Google APIS and 1.7.0 custom minified.

Message: An object is required

Line 20 in index.html (script load line) character 16869 of JS.

Message: 'undefined' is null or not an object

Line 20 in index.html (script load line) character 26903 of JS.

The only function from UI used in the JS is animate() for a font color change. If jQuery UI is not loaded the webpage is loaded correctly.

Here is an attachment with a complete copy of the website. There is a copy of jQuery UI custom build and jQuery in js directory.

Attachments (1)
  • 1.3.1.zip (70.1 KB) - added by pizte March 20, 2009 09:09PM UTC.

    Complete test case

Change History (4)

Changed June 04, 2009 09:38AM UTC by rdworth comment:1

milestone: 1.7.21.8

Changed August 05, 2009 05:18PM UTC by jzaefferer comment:2

priority: criticalblocker

Changed September 29, 2009 03:46AM UTC by codewench comment:3

In the test case zip there is invalid html inside index.html starting on line 27 (missing closing brackets for list elements)

<li<a href="diseno.html">diseño</a></li>
<li<a href="fotografia.html">fotografia</a></li>

If you correct those lines to valid html the IE error should disappear.

<li><a href="diseno.html">diseño</a></li>
<li><a href="fotografia.html">fotografia</a></li>

This does not appear to be a bug in jQuery UI...

Changed November 10, 2009 04:19PM UTC by scottgonzalez comment:4

resolution: → invalid
status: newclosed

Closing invalid based on codewrench's comment.