
April 29th, 2004, 01:53 PM
|
|
Registered User
|
|
Join Date: Apr 2007
Posts: 22,309
Time spent in forums: < 1 sec
Reputation Power: 24
|
|
|
HELP JAVASCRIPT on listbox
i have that code "PopulateList":
------------------------------------
php Code:
Original
- php Code |
|
|
|
function populateList(inForm,selected) { var selectedArray = eval(selected + "Array"); while (selectedArray.length < inForm.cidade.options.length) inForm.cidade.options[(inForm.cidade.options.length - 1)] = null; for (var i=0; i < selectedArray.length; i++) eval("inForm.cidade.options[i]=" + "new Option" + selectedArray[i]); }
the question i want to set focus on the value.. , lets say .. 22 on the listbox
how i do this?
|