aboutsummaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
Diffstat (limited to 'demos')
-rw-r--r--demos/autocomplete/custom-data.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/autocomplete/custom-data.html b/demos/autocomplete/custom-data.html
index c243775a3..1c94a877a 100644
--- a/demos/autocomplete/custom-data.html
+++ b/demos/autocomplete/custom-data.html
@@ -68,7 +68,7 @@
})
.autocomplete( "instance" )._renderItem = function( ul, item ) {
return $( "<li>" )
- .append( "<a>" + item.label + "<br>" + item.desc + "</a>" )
+ .append( "<div>" + item.label + "<br>" + item.desc + "</div>" )
.appendTo( ul );
};
});