Get next tag from selected one : next « jQuery « JavaScript DHTML






Get next tag from selected one

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


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

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

  </body>
</html>

   
    
    
    
  








Related examples in the same category

1.Next class
2.Get next tag
3.next(expr)