Can bind and unbind events to the button.
<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>
Related examples in the same category