Last active
August 29, 2015 13:56
-
-
Save slopeofhope81/8968066 to your computer and use it in GitHub Desktop.
jquery button interaction=DOM manipulation(it makes change to the DOM's representation of the page in the browser.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $(document).ready(function(){ | |
| $("#move_up").click(function(){ | |
| $("#change_me").animate({top:100}, 1000); | |
| }); | |
| $("#move_down").click(function(){ | |
| $("#change_me").animate({top:400},1000) | |
| }); | |
| $("#change_color").click(function(){ | |
| $("#change_me").css("background-color","purple"); | |
| }); | |
| $("#disappear").click(function(){ | |
| $("#change_me").toggle("show"); | |
| }); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment