Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a <ul> created with PHP:

$WORLD_STATES =
     array(
        "France",
        "Germany", 
        "Greece",
        "Greenland",
        "United Kingdom",
        "United States", 
        "Uruguay"
     );

echo '<ul>';
for($i=0; $i<sizeof($WORLD_STATES); $i++){
    echo '<li rel="' . $WORLD_STATES[$i] . '">'.$WORLD_STATES[$i].'</li>';
}

echo '</ul>';

Since the full list of countries is very long, with a scrollbar in a div tag, I want the user to be able to reach a country by simply pressing an alphabetic keyboard shortcut.

How can I accomplish this?

this is an image:

alt text

share|improve this question
You'll need to use a client-side script to achieve this, would JavaScript, jQuery, Prototype, Glow, MooTools...be acceptable? (If so, which one(s)?) – David Thomas Dec 12 '10 at 12:13
PHP has nothing to do with your question. POST here HTML code instead (shortened to the few items) and then ask for the solution. – Your Common Sense Dec 12 '10 at 12:17
@David but how can I do this with javascript? – SmootQ Dec 12 '10 at 12:21
@col.Sharpnel thank you for the editing , :-) – SmootQ Dec 12 '10 at 12:23
2  
Is there some reason you aren't using a select element (dropdown), which browsers natively support keyboard shortcut on ? – Kim Dec 12 '10 at 12:27
show 1 more comment

4 Answers

up vote 1 down vote accepted

To do this with jQuery (jQuery suggested as an easy/reliable way to abstract away cross-browser inconsistencies), I suggest adding a search box to the beginning of the list, giving the following:

html:

<ul>
    <li><input type="text" name="search" id="search" /></li>
    <li>Armenia</li>
    <li>Belgium</li>
    <li>China</li>
    <li>Denmark</li>
    <li>Estonia</li>
    <li>France</li>
    <li>Germany</li>
    <li>Holland</li>
    <li>Ireland</li>
    <li>Japan</li>
    <li>Luxembourg</li>
    <li>Monaco</li>
    <li>Netherlands</li>
</ul>

jQuery:

$('#search').keyup(
    function(e){
        var string = $(this).val();
        if (string.length > 0){
            $('ul li:contains(' + string + ')')
                .addClass('result');
            $('.result')
                .not(':contains('+ string + ')')
                .removeClass('result');
        }
        else {
            $('.result').removeClass('result');
        }
    });

JS Fiddle demo.

share|improve this answer
this is the useful way , thank you! – SmootQ Dec 12 '10 at 12:43
@Simo TAQI, you're quite welcome =) – David Thomas Dec 12 '10 at 12:46

Yes you need client side script.

You could add the accesskey attribute to an a node, and point the href attribute to the unordered list.

Users would still need modifiers though, but it's the standard way to do it.

share|improve this answer

Why not use a <select> element instead?

For example:

<select name="country" id="country">
   <option>United States</option>
   <option>United Kingdom</option>
</select>

The <select> element has the sort of alphanumeric jump functionality built in. You could have a dropdown with all of your countries, with a submit button instead.

If you're using your list to jump to a new page, then you could just read the value of $_POST['country'] and redirect to whichever page it applies to.

If instead you're just using it to jump to some other location on the page, you run some javascript when the form is submitted, read the value of the select, and jump to that location on the page.

share|improve this answer
good question, I've built a select like component(my personal taste) and I used a div+ul+input text+ a button (you can see it in the photo) – SmootQ Dec 12 '10 at 12:36
@Simo: You realize that you can style <select> and <option> with CSS, right? For example, I made this quickly as a proof of concept. If you play around a bit, you can probably make yours look just as good as the one you made out of <div> elements. – AgentConundrum Dec 12 '10 at 12:54
@AgentConundrum yes true, but the one I show you in the image, when you click in the text input (which is readonly) the list will appear in a fadeIn manner(just like a styled pop up) not like a select element. – SmootQ Dec 12 '10 at 13:12
@Simo: Why can't you fade in the <option> elements in the same way? – AgentConundrum Dec 12 '10 at 13:15
1  
@Simo: I'm all for reinventing the wheel, and it is a good learning experience, but if you reinvent a wheel and it turns out to be worse than a normal wheel, it's ok to throw it away. – AgentConundrum Dec 12 '10 at 13:38
show 5 more comments

This can be done without changing your current layout using jQuery. Here is crude example:

$(document).keypress(function (event) {
    var key = String.fromCharCode(event.which);
    $("#Container li").each(function (index) {
        var text = $(this).text();
        if (text.length > 0 && text.charAt(0).toLowerCase() == key.toLowerCase())
        {
            $("#Container").scrollTop($(this).position().top);
            break;
        }           
    });
});

This should scroll the DIV to the position of the <li> strarting with the typed letter.

share|improve this answer
this is also a useful and simplified way, thank you – SmootQ Dec 12 '10 at 12:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.