Skip to content

Instantly share code, notes, and snippets.

View jeanlucaslima's full-sized avatar
😃

Jean Lucas jeanlucaslima

😃
View GitHub Profile
$ 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
$("button").click(function(){
$("p").hide("slow",function(){
alert("The paragraph is now hidden");
});
});
@jeanlucaslima
jeanlucaslima / gist:01f8a577bf6ed266548c
Last active August 29, 2015 14:13
No callback example
$("button").click(function(){
$("p").hide(1000);
alert("The paragraph is now hidden");
});
willDestroyElement: function() {
var clone = this.$().clone();
this.$().parent().append(clone);
clone.fadeOut();
}