Tuesday, July 21, 2015

Set Jquery-ui-autocomplete select menu height

This was really simple than I thought. You just need to add following CSS lines to your style sheets.

     ui-autocomplete    
    { 
        max-height: 250px;
        overflow-y: auto; 
        overflow-x: hidden;
    }

Hope this will help you.