Can bind and unbind events to the button. : Form Button « jQuery « JavaScript Tutorial






<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
                
            function aClick() {
              alert("action");
            }
            $("#bind").click(function () {
              $("#myButton").click(aClick).text("Binded");
            });
            $("#unbind").click(function () {
              $("#myButton").unbind('click', aClick).text("Not Binded");
            });

        });
    </script>

  </head>
  <body>
    <body>
          <button id="myButton">Not Binded</button>
          <button id="bind">Bind Click</button>
          <button id="unbind">Unbind Click</button>
       
                         
    </body>
</html>








30.120.Form Button
30.120.1.Bind click action to button
30.120.2.Get form button
30.120.3.Get disabled button
30.120.4.Disables buttons greater than the 1st button.
30.120.5.Can bind and unbind events to the button.
30.120.6.On click, replace the button with a div containing the same word.
30.120.7.Create a button that's able to clone itself - and have the clones themselves be clonable.
30.120.8.Add action to button with ID
30.120.9.Use index to get the clicked button index