I do not have enough knowledge in JQuery to figure out, where in this code below i'd mistaken. I'm not sure about .live handler. Anyway, this code stops on first <li> with added class 'selected' on keydown event. I want it to check all <li> on each keydown.
Thank you for any constructive comments.
- suggest - input field, on keyup appears autosuggest list,
- result -
<ul id='result'></ul> - selected -
<li>'s
Script:
$('#suggest').live('keyup keydown', function(event) {
var search = $('#suggest').val();
$.post('search.php', {
search: search
}, function(data) {
$('#dropdown').html(data);
switch (event.which) {
case 40:
var found = 0;
$('#result li').each(function() {
if ($(this).attr("class") == "selected") {
found = 1;
}
});
if (found == 1) {
var sel = $("#result li[class='selected'");
// check if this is a last element in the list
// if so then add selected class to the first element in the list
if (sel.next().text() == '') {
$("#result li:first").addClass("selected");
} else {
sel.next().addClass('selected');
// remove class selected from previous item
sel.removeClass('selected');
}
} else {
$("#result li:first").addClass("selected");
}
break;
case 38:
//bla-bla
break;
}
});
});