1 2 3 4 5 6 7 8 9 10 11 12 |
<script src="http://code.jquery.com/jquery-latest.js"></script> <script> $(document).ready(function(){ $("#mybutton").click(function() { alert("Hello"); }); }); </script> <input type="button" value ="change" id = "mybutton"> |
Another example
1 2 3 4 5 |
$('.show_hide').click(function(){ $(".slidingDiv").hide(); }); |