Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<head>
<script src="../../ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script>
  $(document).ready(function () {
    $("ul.test > li").css("border", "4px double");
  });
</script>
</head>
<body>  
<ul class="test">
  <li>List item</li>
  <li>List item
    <ul>
      <li>Nested list item (will not have border)</li>
    </ul>
  </li>
  <li>List item</li>
</ul>
</body>
<!-- /jquery/tryit.asp?filename=tryjquery_sel_parent_child2 Fri, 07 Feb 2025 00:11:41 GMT -->
</html>