I have jQueryUI code for autocompleting that follows....
$(function() {
var updates = [
{ value: "URL",
label: "some text",
icon: "jqueryui_32x32.png"};
];
$("input#autocomplete").autocomplete({
delay: 10,
minLength: 0,
source: updates,
select: function( event, ui ) {
window.location.href = ui.item.value;
}
});
});
And it essentially produces a site search where the results are direct links. I would like to add images that are stored locally to the results to greater imitate facebook. I've had no luck and seen questions before directing users to the "custom data" demo. Here is one such question...
How do I add images to results of this JQueryUI autocomplete plugin?
I'm aware or this demo...
http://jqueryui.com/demos/autocomplete/#custom-data
..but there is NO guidance as to how one would go about do this IN DETAIL about formatting the results overlay itself / putting images IN the overlay. I'm realy at a loss here. I've dissected this demo all day with nothing to show for it. This should be easy because all the data and images are local. They're all in the same folder as this search. There's no PHP or database stuff to deal with here.....
I really, truly hate jQuery UI because of how poorly documented it is, and how unnecessarily complicated it is.... All the customization stuff is in multiple files, etc.... I used to use JÖRN ZAEFFERER's plugin which accepted simple HTML tags. It worked just fine until IE8......
Any insights into this are greatly, greatly appreciated.
.data("autocomplete")
is undefined. I updated your fiddle. Any ideas on how to fix it? – Shieh