Skip to content

Instantly share code, notes, and snippets.

@scottgonzalez
Created February 3, 2011 21:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scottgonzalez/810200 to your computer and use it in GitHub Desktop.
Save scottgonzalez/810200 to your computer and use it in GitHub Desktop.
$.widget( "ui.autocomplete", $.ui.autocomplete, {
_suggest: function( items ) {
var menu = this.menu.element,
width = menu.width(),
height = menu.height();
this._super( "_suggest", items );
var newWidth = menu.width(),
newHeight = menu.height();
menu.css({
width: width,
height: height
}).animate({
width: newWidth,
height: newHeight
}, 300, function() {
$( this ).css( "height", "" );
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment