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
$ curl https://raw.githubusercontent.com/creationix/nvm/v0.23.2/install.sh | bash | |
$ nvm install 0.10 | |
$ nvm use 0.10 | |
$ nvm alias default 0.10 |
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
$("button").click(function(){ | |
$("p").hide("slow",function(){ | |
alert("The paragraph is now hidden"); | |
}); | |
}); |
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
$("button").click(function(){ | |
$("p").hide(1000); | |
alert("The paragraph is now hidden"); | |
}); |
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
willDestroyElement: function() { | |
var clone = this.$().clone(); | |
this.$().parent().append(clone); | |
clone.fadeOut(); | |
} |
NewerOlder