RegionFree
New Member
The script I currently have moves an option from a box to another boxproblem is I dont have much experience with DOM events and I need to add one more thing\[code\]function addOption(theSel, theText, theValue){ var newOpt = new Option(theText, theValue); var selLength = theSel.length; theSel.options[selLength] = newOpt;}\[/code\]this effectively creates my new option box however I want to add\[code\]ondblclick="moveOptions(this.form.sel2, this.form.sel1);"\[/code\]to the new option - How would I accomplish this?