Opened 14 years ago
Closed 14 years ago
#3380 closed bug (fixed)
.hasClass(".name") silently dies
Reported by: | dmethvin | Owned by: | flesler |
---|---|---|---|
Priority: | major | Milestone: | 1.3 |
Component: | selector | Version: | 1.2.6 |
Keywords: | Cc: | dmethvin, flesler | |
Blocked by: | Blocking: |
Description
If you erroneously use $().hasClass() with a leading dot on the class name, jQuery silently stops executing code in FF3.
The actual problem seems to be in jQuery.filter, which matches the leading ".." in the selector it's given and then tries to look that up in jQuery.expr and gets undefined, but still tries to call it as a function.
This clearly is a user input error case so I wouldn't say the actual return value is critical, but the fact that jQuery dies in an unusual way makes debugging hard.
http://groups.google.com/group/jquery-en/browse_frm/thread/d10bd5d494c488a3#
Attachments (2)
Change History (7)
Changed 14 years ago by
comment:1 Changed 14 years ago by
Cc: | dmethvin flesler added |
---|---|
need: | Review → Patch |
Owner: | set to flesler |
Status: | new → assigned |
comment:2 Changed 14 years ago by
It occurred to me this morning that an easy fix for hasClass would be:
return this.is( "." + selector.replace(/^\./,"") )
That has the nice effect of doing what the user really meant, too.
comment:3 Changed 14 years ago by
No, that's just a custom hack for this situation, not a fix.
Passing .foo to hasClass is with no doubt an error from the developer and we won't be patching things like that.
What I am considering is throwing an error inside the selector engine when an unrecognized filter is found.
Changed 14 years ago by
Attachment: | bad-filter-throw[5845].diff added |
---|
comment:4 Changed 14 years ago by
This patch throws an error at least on these cases:
$('foo').hasClass('.bar') $('foo..bar') $('foo:bar') $('foo:bar(baz)')
If you add a space between the tag and the filter it won't throw because that gets handled by find() and not by filter().
comment:5 Changed 14 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Confirmed this is fixed in jQuery 1.3.
Repro case for .hasClass(".name") bug