In Opera 9.27 (Linux), jQuery 1.3.2 selects a ul in the document,
rather than the child ul of the #TestFieldset element.

Not sure how to write a formal unit test for this, but here's a small
code snippet that shows the issue:

<html>
<head>
        <script type="text/javascript" src="http://geoscreen11/js/
jquery-1.3.2.js"></script>
</head>
<body>
        <ul><li>Random List</li></ul>
        <fieldset id="TestFieldset">
                <ul></ul>
        </fieldset>
</body>
        <script type="text/javascript">
                jQuery(document).ready(function() {
                        alert(jQuery('#TestFieldset>ul').html()); //
Fails in Opera 9.27 (selects a previous ul in doc)
                        alert(jQuery('#TestFieldset').find('>ul').html
()); //Workaround
                });
        </script>
</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
-~----------~----~----~----~------~----~------~--~---

Reply via email to