I'm trying to make the autocomplete working, using remote data from an access db.
I get the right data back from call, but no select box is showing up.
I only get the text "2 results are available, use up and down arrow keys to navigate." outside the input field and behind that text the recieved data is poping up like a mess. When I click the data it moves to the input.
So I wonder: Where does this text come from and how do I get rid of it. And why dont the selectbox show up?
This is the jquery function:
-
$(function() {
$( "#namn" ).autocomplete({
source: "ajax_seekkund.asp?seekstr="+$("#namn").value+"&dum="+Math.random(),
minLength: 2
});
});