jQuery.fn.aspHide = function() { | |
$(this).each(function() { | |
var elem = $(this); | |
elem.data('height', elem.height()); | |
elem.height('0'); | |
elem.css('visibility', 'hidden'); | |
}); | |
}; | |
jQuery.fn.aspShow = function() { | |
$(this).each(function() { | |
var elem = $(this); | |
elem.height(elem.data('height')); | |
elem.css('visibility', 'visible'); | |
}); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment