Use the animation function and just change the width and height. Here is the plugin that will show.
jQuery.fn.extend( {
reveal: function() {
return this.each( function() {
var $this = $(this);
$this.animate( { width: "show", height: "show" } );
});
}
}
source
share