the content of the box when it shows is simply....
Code:
<li onClick="fill('#cpu', '2 x intel xeon e5462');">2 x intel xeon e5462</li>
<li onClick="fill('#cpu', '2 x intel qx9775');">2 x intel qx9775</li>
and so on. the fill function is this...
Code:
function fill(myid, value) {
$(myid).val(value);
$(myid + '-suggest').hide('slow');
}
this populates the text box on the form with the value you select and hides the list. that's all there is to it. i just don't know why it closes when you click on the scrollbar.