JQuery UI Autocomplete showing as bullets

Posted by awshepard on Stack Overflow See other posts from Stack Overflow or by awshepard
Published on 2010-04-30T22:43:22Z Indexed on 2010/04/30 22:47 UTC
Read the original article Hit count: 436

The JQuery UI Demo page for autocomplete (link) has a nice looking search box and drop down with nice colors and highlights and such. When I implement it for myself, I end up with a bulleted list. How do I get my drop down of suggestions to look like theirs?

A few notes/code fragments:

  • I'm working in .NET land, so I'm using the <asp:ScriptManager> tag with <asp:ScriptReference>s inside it to get the hosted jquery.min.js (1.4.2) and jquery-ui.min.js (1.8.1) files from Google.
  • My input box is fairly simple: <div class='ui-widget'> <label for="terms">Term: </label> <input id="terms" class="ui-autocomplete-input"> </div>
  • My autocomplete looks like: $(""#terms"").autocomplete({source:""GetAttributesJSON.aspx"",minLength:2});

I get the correct data back, so that's not the issue. I just want fancy graphics. Any thoughts would be much appreciated.

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about jquery-ui