Hi! Have been using your library for ages, it is awesome, thank you! Recently found some issues, that seems to be related to previousSibling ( "~" ) selector Can you point me to a place, where it is broken, since i afraid of using nightly builds in product
Sample markup: <html> <head> <!-- 1.3.2. looks like broken --> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/ libs/jquery/1.3.2/jquery.min.js"></script> <!-- Nightly. works --> <!-- <script type="text/javascript" src="http://code.jquery.com/nightlies/ jquery-nightly.js"></script> --><!-- 1.3.1. works --><!-- <script type="text/javascript" src="http://ajax.googleapis.com/ajax/ libs/jquery/1.3.1/jquery.min.js"></script> --> <script type="text/javascript"> $(document).ready(function(){ console.log($('#prev ~ div').length);/*expecting 1, got zero in 1.3.2*/ }); </script> </head> <body> <div id="prev">1</div> <div>2</div> </body> </html> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "jQuery Development" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/jquery-dev?hl=en -~----------~----~----~----~------~----~------~--~---
