I want to make the selected option appear in the middle of a drop-down. When I first load the page it appears at the bottom of the drop-down, but if I scroll past it and exit it remembers that when I open it again. I want it to make it appear in the middle by default.

At first I thought I could just use javascript to select an option past the one I want, then set it back to the correct option. I've played with scrollTop and scrollTo, but none of them seem to give me what I need. I've been testing it in Chrome, but it also needs to work in Firefox and IE. Any ideas?

Edit: I tried the scrollTo plugin but it doesn't seem to work for drop-downs. Take a look at these code snippets

From HTML:

<select id="test">
    <option>1</option>
    <option>2</option>
    // ........
    <option selected="selected">21</option>
    <option>22</option>
    // ........
    <option>40</option>
</select>

From Javascript:

$(function() {
    alert( $('#test option:selected').next().text() ); // alerts 22
    $().scrollTo('#test'); // scrolls the screen to the drop-down
    $('#test').scrollTo( $('#test option:selected').next() ); //does nothing
});
link|improve this question
feedback

2 Answers

up vote 2 down vote accepted
+50

Use this jQuery plugin: http://plugins.jquery.com/project/ScrollTo

Edit - Final Solution: Because a drop-down list is brower-handled and can't be manipulated very well, you have to recreate the behavior of a drop-down list yourself. Look at the comments for more information.

link|improve this answer
This doesn't seem to work for drop-downs though. Am I missing something? – redEvo Jul 5 '11 at 17:51
Oh, sorry, a drop-down list is browser-handled, so you can't manipulate it very well. But you can create your own drop down control with jQuery and this plugin. Just add an ul-tag with the options, a button etc and recreate the behavior of a drop-down list with jQuery. Maybe you can find a drop-down jQuery plugin outside on the internet, too. – Arxisos Jul 5 '11 at 18:06
Well, that's disappointing. That makes sense though; from playing around with different events I was starting to get that impression (that it's handled by the browser). Thanks for the tips. – redEvo Jul 5 '11 at 18:23
feedback

$(".MyDDL").val('2');

[jQuery.val] checks, or selects, all the radio buttons, checkboxes, and select options that match the set of values.

link|improve this answer
Selecting an option isn't the problem. If there are 40 items and the 30th is selected, it should show in the middle (or as close to the middle as possible) so you can see the last 10 items. By default the selected item is at the bottom and you see something like items 10-30. – redEvo Jun 27 '11 at 19:30
hmmm.... sorry i didnt read more thoroughly... Thats a tough one... – Robotsushi Jun 27 '11 at 19:37
feedback

Your Answer

 
or
required, but never shown

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