vote up 2 vote down star

Can't understand why this code changes color of DIV element to blue, but doesn't change color of a SPAN element. Any ideas?

<html>
<head>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
  <script>
    $(document).ready(function(){
      $("#prev ~ div").css("color", "blue");
      $("#prev ~ span").css("color", "red");
    });
  </script>
</head>
<body>
  <span id="prev">span#prev</span>
  <div>div sibling</div>
  <span>span sibling</span>
</body>
</html>

Noticed what if I replace

<span id="prev">span#prev</span>

with

<p id="prev">span#prev</p>

both DIV and SPAN change text color.

Thanks!

flag

This bug is closed in jQuery version 1.3.2 – Alexander Prokofyev Nov 9 at 11:22

3 Answers

vote up 6 vote down check

Looks like you found a bug.

$("#prev ~ span:not(#prev)") works, as does $("#prev").siblings("span").

link|flag
+1 for the workaround :) – altCognito Apr 27 at 14:31
1  
Also, $("#prev~span") works in 1.2.6 so it is definitely a bug introduced in 1.3. – DrJokepu Apr 27 at 14:32
vote up 4 vote down

This does indeed seem to be a bug. Report a bug to jQuery.

http://dev.jquery.com/report

There are a decent number of sibling selector bugs it seems.

link|flag
I have submitted the problem (dev.jquery.com/ticket/4605). Hope they will fix it soon. – Alexander Prokofyev May 15 at 8:49
vote up 2 vote down

Seems to be an error with JQuery. You should submit this bug to the team and let them fix it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.