How to remove bullets from jquery autocomplete result

后端 未结 4 1147
离开以前
离开以前 2020-12-29 09:26

My jquery-ajax autocomplete result shows a bulleted list. I want to remove the bullets. I don\'t understand where and what i need to change in jquery-ui-1.8.21.custom.css (d

4条回答
  •  再見小時候
    2020-12-29 10:13

    jQuery-ui-1.10.3

    This works in Chrome, IE, and Firefox. It also removes the left margin where the bullet used to be. It's derived from w3Schools http://www.w3schools.com/CSS/css_list.asp

    ul.ui-autocomplete {
        list-style: none;
        list-style-type: none;
        padding: 0px;
        margin: 0px;
    }
    

提交回复
热议问题