Bug Tracker

Opened 11 years ago

Closed 10 years ago

#11313 closed bug (worksforme)

Delay with multiple selector (including id selector) in Internet Explorer 6

Reported by: [email protected] Owned by: [email protected]
Priority: undecided Milestone: None
Component: unfiled Version: 1.7.1
Keywords: Cc:
Blocked by: Blocking:

Description

Hi,

I stumbled upon this and have constructed this test case:

<form> <input type="radio" name="form[ust]" id="form-ust-7" value="7" />7% <input type="radio" name="form[ust]" id="form-ust-19" value="19" checked="checked" />19% <input type="radio" name="form[ust]" id="form-ust-a" value="a" />keine <input type="radio" name="form[ust]" id="form-ust-a1" value="a1" />andere <br /> <input type="text" name="form[steuerbetrag]" id="form-steuerbetrag" value="" /> </form>

<script type='text/javascript' src='/_files/js/jquery-1.7.1.js'></script> <script type="text/javascript"> $(function () { alert("a");

$('input[name=form
[ust],#form-steuerbetrag').show ();

alert("b");

$('input[name=form
[ust]').add('#form-steuerbetrag').show ();

alert("c"); }); </script>

Between a and b there is a delay of over one minute in Internet Explorer 6. Between b and c there is no delay.

Change History (9)

comment:1 Changed 11 years ago by [email protected]

the reporting tool apparently converted the opening backslashes before [ust

comment:2 Changed 11 years ago by sindresorhus

Owner: set to [email protected]
Status: newpending

Thanks for taking the time to contribute to the jQuery project! Please provide a complete reduced test case on jsFiddle to help us assess your ticket.

Additionally, be sure to test against the jQuery Edge version to ensure the issue still exists. To get you started, use this boilerplate: http://jsfiddle.net/FrKyN/ Open the link and click to "Fork" (in the top menu) to get started.

comment:3 Changed 11 years ago by [email protected]

Status: pendingnew

I would provide a test case, but my comment gets rejected as potential spam, so I am not able to communicate the url of the test case to you.

comment:4 Changed 11 years ago by sindresorhus

Status: newpending

Try pasting it inside a codeblock

jsfiddle.net/something

If not, hit me up on IRC #jquery, and I'll add it for you.

comment:5 Changed 11 years ago by anonymous

Man, this is like jumping through hoops...

http://jsfiddle.net/arnoschaefer/RpUp4/

comment:6 Changed 11 years ago by trac-o-bot

Resolution: invalid
Status: pendingclosed

Because we get so many tickets, we often need to return them to the initial reporter for more information. If that person does not reply within 14 days, the ticket will automatically be closed, and that has happened in this case. If you still are interested in pursuing this issue, feel free to add a comment with the requested information and we will be happy to reopen the ticket if it is still valid. Thanks!

comment:7 Changed 11 years ago by [email protected]

Guys, for the love of god, please fix your bug tracking system. You ask me to provide a URL to a jsfiddle, but whenever I put a URL in my comment, it is rejected as SPAM.

It feels like the system is intentionally trying to discourage people from reporting bugs.

I already provided the information you requested, see the anonymous post above.

comment:8 Changed 10 years ago by m_gol

Resolution: invalid
Status: closedreopened

comment:9 Changed 10 years ago by m_gol

Resolution: worksforme
Status: reopenedclosed

Works for me in jQuery 1.x edge so I assume it was already fixed.

Note: See TracTickets for help on using tickets.