sjbjl logo

smart jQuery based javascript library

by rodenic
<-- sjbjl's docs index

field autocomplete



javascript

$("#campoditest").autocomplete({ source:"field_autocomplete_response.html", minLength:2, select:function(event,ui) { alert(ui.item.value + " --- " + ui.item.id + " --- " + this.value); } });

html sample

<input type="text" name="campoditest" id="campoditest" />

json response sample

[{ "id":"Arenaria interpres","label":"Ruddy Turnstone","value":"Ruddy Turnstone" },{ "id":"Larus audouinii","label":"Audouin`s Gull","value":"Audouin`s Gull" },{ "id":"Tadorna ferruginea","label":"Ruddy Shelduck","value":"Ruddy Shelduck" },{ "id":"Limosa haemastica","label":"Hudsonian Godwit","value":"Hudsonian Godwit" }]