This site will have limited functionality while we undergo maintenance to improve your experience. If an article doesn't solve your issue and you want to ask a question, we have our support community waiting to help you at @FirefoxSupport on Twitter and/r/firefox on Reddit.

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Hierdie gesprek is in die argief. Vra asseblief 'n nuwe vraag as jy hulp nodig het.

Multiple selection from a list fails after scrolling the list

  • 1 antwoord
  • 1 het hierdie probleem
  • 10 views
  • Laaste antwoord deur the-edmeister

more options

I ran into this problem in a much more complex HTML file, but here is a simple file that recreates the issue:

<script type="text/javascript"> function selectWorks() { window.alert("Selected"); } </script>

<form> <select size="4" onclick="selectWorks();" multiple> <option>A</option> <option>B</option> <option>C</option> <option>D</option> <option>E</option> <option>F</option> <option>G</option> <option>H</option> <option>I</option> <option>J</option> </select> </form>

Note that the behavior is correct in Google Chrome.

I have also reproduced this error in both Firefox and Seamonkey a Windows XP environment.

I ran into this problem in a much more complex HTML file, but here is a simple file that recreates the issue: <html> <body> <!-- Steps to reproduce the problem: - Select the 'A' option => the 'Selected' alert is displayed - Scroll down until the 'J option is visible - Select the 'G' option (the 'Selected' alert does NOT appear) In general, the select event fails if you: - select an option near the top or bottom of the list - then scroll until you see the opposite end of the list - then select one of the visible options --> <script type="text/javascript"> function selectWorks() { window.alert("Selected"); } </script> <form> <select size="4" onclick="selectWorks();" multiple> <option>A</option> <option>B</option> <option>C</option> <option>D</option> <option>E</option> <option>F</option> <option>G</option> <option>H</option> <option>I</option> <option>J</option> </select> </form> </body> </html> Note that the behavior is correct in Google Chrome. I have also reproduced this error in both Firefox and Seamonkey a Windows XP environment.

All Replies (1)

more options

Try posting at the Web Development / Standards Evangelism forum at MozillaZine. The helpers over there are more knowledgeable about web page development issues with Firefox.
http://forums.mozillazine.org/viewforum.php?f=25
You'll need to register and login to be able to post in that forum.