Skip to main content

Bug Tracker

Side navigation

#6072 closed bug (worksforme)

Opened February 11, 2010 08:39AM UTC

Closed March 28, 2010 01:11AM UTC

filter ATTR hash fails. ff2

Reported by: ilya.devel Owned by:
Priority: Milestone: 1.4.1
Component: selector Version: 1.4.1
Keywords: filter ATTR hash fails. ff2 Cc:
Blocked by: Blocking:
Description

firefox 2

jquery-1.4.1.js line: 3172 throws exception when name == 'hash'

Attachments (1)
  • test-6072.html (0.4 KB) - added by dmethvin March 28, 2010 01:11AM UTC.

    Test case

Change History (3)

Changed February 11, 2010 11:55PM UTC by john comment:1

component: coreselector
resolution: → invalid
status: newclosed

Can you provide an example where this might happen? I can't think of an element where you might be doing this particular selector. If you have an example please re-open this ticket - thank you!

Changed March 26, 2010 12:59PM UTC by ilya.devel comment:2

resolution: invalid
status: closedreopened

i often use such construction

html:

<a href="#submit">submit</a>

js:

$(function() {

$('a[hash=#submit]').click(function() {

//TODO: validate and submit

return false;

});

});

Changed March 28, 2010 01:11AM UTC by dmethvin comment:3

resolution: → worksforme
status: reopenedclosed

It seems to work fine with 1.4.2 at least, test case attached.