Disables buttons greater than the 1st button. : Form Button « jQuery « JavaScript DHTML






Disables buttons greater than the 1st button.

 

<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
            $("button:gt(1)").attr("disabled","disabled");

      

        });
    </script>
  </head>
  <body>
    <body>
      <button>0th Button</button>
      <button>1st Button</button>
      <button>2nd Button</button>
    </body>
</html>

   
  








Related examples in the same category

1.Bind click action to button
2.Get form button
3.Get disabled button
4.Can bind and unbind events to the button.
5.On click, replace the button with a div containing the same word.
6.Create a button that's able to clone itself - and have the clones themselves be clonable.
7.Add action to button with ID
8.Use index to get the clicked button index