Bug Tracker

Show
Ignore:
Timestamp:
12/13/07 22:24:59 (1 year ago)
Author:
davidserduke
Message:

Fixed #1854 by using wizzud's suggestion. The only real difference is the code is only called when there is more than a single selector. So there should be no speed decrease in the current working cases. Only additional functionality for cases that used to fail.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/jquery/test/index.html

    r4062 r4143  
    6262             
    6363            <select name="select1" id="select1"> 
    64                 <option id="option1a" value="">Nothing</option> 
     64                <option id="option1a" class="emptyopt" value="">Nothing</option> 
    6565                <option id="option1b" value="1">1</option> 
    6666                <option id="option1c" value="2">2</option> 
     
    6868            </select> 
    6969            <select name="select2" id="select2"> 
    70                 <option id="option2a" value="">Nothing</option> 
     70                <option id="option2a" class="emptyopt" value="">Nothing</option> 
    7171                <option id="option2b" value="1">1</option> 
    7272                <option id="option2c" value="2">2</option> 
     
    7474            </select> 
    7575            <select name="select3" id="select3" multiple="multiple"> 
    76                 <option id="option3a" value="">Nothing</option> 
     76                <option id="option3a" class="emptyopt" value="">Nothing</option> 
    7777                <option id="option3b" selected="selected" value="1">1</option> 
    7878                <option id="option3c" selected="selected" value="2">2</option>