-> the code to populate a list box is in the faqs for this forum
-> to populate 2 selectboxes is just like populating 1 - just use a function to make code more readable
-> to call the function, the event is "onclick"
<input type=button value="click me to populate 2 lb" onclick="my_populate_func()">
function my_populate_func() {
// call the add for the 1st list box
// call the add for the 2nd list box
}
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.