Jquery: Override Fadein/fadeout Effects
I want to override jQuery's fadein and fadeout effects when page loads. How it is possible? thanks.
Solution 1:
You can override fadeIn and fadeOut ... try this
jQuery.fn.fadeIn = function() {
// yourcode here
}
jQuery.fn.fadeOut = function() {
// yourcode here
}
Watch the movie a that link
Post a Comment for "Jquery: Override Fadein/fadeout Effects"