next(expr) : next « jQuery « JavaScript DHTML






next(expr)

 

<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){

                 $("p").next().text("asdf");   

        });
    </script>
  </head>
  <body>
    <body>
        
        <p>bad or .</p><span>good</span>

          
    </body>
</html>

   
  








Related examples in the same category

1.Next class
2.Get next tag
3.Get next tag from selected one