javascript - JQuery Autocomplete drop down layout issue -


i implementing jquery autocomplete on html page. unfortunately, drop down layout not clean box entries (see http://jqueryui.com/autocomplete/), rather ul-like list of links:

enter image description here

i using:

<script src='http://code.jquery.com/jquery-2.0.0.min.js'     type="text/javascript"></script> <script src='http://code.jquery.com/ui/1.10.0/jquery-ui.min.js'     type="text/javascript"></script> 

what doing wrong?

you missing jquery ui css file gives style page.

add following line html page tag:

<link rel="stylesheet" type="text/css" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css"> 

Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -