Searching through a multi-select box
Hello all,
I am having some problems with a plugin I am trying to use to search
through a multi-select box in a form I am creating.
I have attached the plugin code here is the application code
<script type="text/javascript">
$(document).ready(function () {
$('select#target_FC option').quicksearch({
position: 'before',
attached: 'select#target_FC',
loaderImg: '/images/loader.gif',
focusOnLoad: true
});
});
</script>
and here is the HTML in the multi-select
<select name="target_FC" id="target_FC"multiple="multiple"
class="pickList" size="10">
<option value="11 112 13 4452">11 112 13 4452 - Bad Engine
Oil</option>
<option value="11 112 13 4453">11 112 13 4453 - Bad Oil
Sensor</option>
<option value="11 112 13 4454">11 112 13 4454 - Faulty Engine
Light</option>
<option value="11 112 13 4455">11 112 13 4455 - Bad Motor
Finger</option>
<option value="11 112 13 4456">11 112 13 4456 - Gas Over
Filled</option>
<option value="11 112 13 4457">11 112 13 4457 - Dead Left
Filangy</option>
<option value="11 112 13 4458">11 112 13 4458 - Bad O-Ring</
option>
<option value="11 112 13 4459">11 112 13 4459 - Celinoid At
Zero Lux</option>
<option value="11 112 13 44510">11 112 13 44510 - R2 Unit Bad
Motivator</option>
<option value="11 112 13 44511">11 112 13 44511 - Primary
Egnition Stuck</option>
<option value="11 112 13 44512">11 112 13 44512 - Hyperdrive
Mesh Out of Sync</option>
<option value="11 112 13 44513">11 112 13 44513 - Hydrospanner
Set Low</option>
<option value="11 112 13 44514">11 112 13 44514 - Punch it
Chewy</option>
</select>
Now in FF, Safari, Opera everything is hunky dory. but put it into the
4 ton gorrila (aka IE 6/7) and it will look like it is searching but
nothing will actually reset.
If anyone has any questions/solutions that would be great.