#194 closed bug (fixed)
Fix for attribute *=, ^=, and $= in cases where special attributes.
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | major | Milestone: | 1.0 |
Component: | core | Version: | 1.0 |
Keywords: | attribute | Cc: | |
Blocked by: | Blocking: |
Description
In FF 1.5, selecting attribute @name where the name attribute is not present results in a "z has no properties" error, because z, which should be "" when the attribute is not present, has a value of null.
Change History (3)
comment:1 Changed 17 years ago by
comment:2 Changed 17 years ago by
Milestone: | → 1.0 |
---|---|
Version: | → 1.0 |
Note: See
TracTickets for help on using
tickets.
This has solved the problem:
Change jQuery.expr."@" from
to
We're just testing for null before we try to call the indexOf() or substr() methods that we expect from strings.