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:
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
Post a Comment