Skip to main content

Bug Tracker

Side navigation

#4409 closed bug (invalid)

Opened March 24, 2009 02:39PM UTC

Closed March 26, 2009 02:18AM UTC

Difference between Firefox 3 and IE 6

Reported by: OBU Owned by:
Priority: minor Milestone: 1.4
Component: unfiled Version: 1.3.2
Keywords: Cc:
Blocked by: Blocking:
Description

On this simple test, only the first "div" with id "test" is processed on Firefox 3.

With IE, both are processed

Attachments (1)
  • test1.html (0.8 KB) - added by OBU March 24, 2009 02:40PM UTC.

    Html page

Change History (4)

Changed March 24, 2009 06:14PM UTC by jerone comment:1

Should

$(test)
not be
$("#test")

Changed March 25, 2009 10:46AM UTC by OBU comment:2

Thanks for your answer,

With $("#test") we have the same result on Firefox and IE, but not with $(test).

Maybe it's normal, I don't know, but in any case, what is test in $(test) and why IE process it differently ?

Do you think it's a problem of browser or in jQuery ?

Changed March 25, 2009 02:06PM UTC by jerone comment:3

$(test)
is wrong scripting.
test
is a variable, but in the whole document not defined. So jQuery is looking for something that doesn't exist.

Why it does work on some browsers is weird.

To conclude it's not a jQuery bug, nor a browser bug, it's wrong scripting.

Changed March 26, 2009 02:18AM UTC by dmethvin comment:4

resolution: → invalid
status: newclosed