Skip to main content

Bug Tracker

Side navigation

#11313 closed bug (worksforme)

Opened February 09, 2012 07:35PM UTC

Closed April 15, 2013 12:21AM UTC

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

Reported by: arno_schaefer@gmx.de Owned by: arno_schaefer@gmx.de
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.

Attachments (0)
Change History (9)

Changed February 09, 2012 07:38PM UTC by arno_schaefer@gmx.de comment:1

the reporting tool apparently converted the opening backslashes before [ust

Changed February 09, 2012 08:12PM UTC by sindresorhus comment:2

owner: → arno_schaefer@gmx.de
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.

Changed February 10, 2012 01:06PM UTC by arno_schaefer@gmx.de comment:3

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.

Changed February 10, 2012 01:11PM UTC by sindresorhus comment:4

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.

Changed February 10, 2012 01:25PM UTC by anonymous comment:5

Man, this is like jumping through hoops...

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

Changed February 25, 2012 08:12AM UTC by trac-o-bot comment:6

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!

Changed February 25, 2012 09:43PM UTC by arno_schaefer@gmx.de comment:7

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.

Changed April 15, 2013 12:20AM UTC by m_gol comment:8

resolution: invalid
status: closedreopened

Changed April 15, 2013 12:21AM UTC by m_gol comment:9

resolution: → worksforme
status: reopenedclosed

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