Skip to content

Instantly share code, notes, and snippets.

@ahomu
Created April 18, 2012 08:23
Show Gist options
  • Save ahomu/2412035 to your computer and use it in GitHub Desktop.
Save ahomu/2412035 to your computer and use it in GitHub Desktop.
ヾ('ω'ヾ) ごみ
// blinkメソッドを追加
jQuery.fn.extend({
blink: function (callback) {
var self = this;
self.fadeOut(500, function() {
self.fadeIn(200, function() {
callback && callback();
});
});
}
});
//test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment