jQueryUI 1.8.14 Autocomplete
HTML
<script src="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.14/jquery-ui.min.js"></script>
<link rel="stylesheet" href="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.16/themes/cupertino/jquery-ui.css">
<button id="button">Test</button>
CSS
#button > span.ui-icon-custom {
background-image: url(http://placekitten.com/25/25)
}
JavaScript
$('#button').button({
text: false,
icons: {
primary: 'ui-icon-custom'
}
});