Search tags from nextAll() : nextAll « jQuery « JavaScript Tutorial






<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
             $("button[disabled]").nextAll("span").text("data");



        });
    </script>
    <style>
      .y { background:yellow; }
  </style>

  </head>
  <body>
    <body>
       <div><button disabled="disabled">First</button> - <span class="selected"></span>
            <span></span>
       </div>

  </body>
</html>








30.69.nextAll
30.69.1.Search tags from nextAll()
30.69.2.Get next all
30.69.3.nextAll(expr): Use an optional expression to filter the matched set.