Forum Moderators: open
For example, I have a listbox call a function on a change event.
funtion Process(selection){
var lenofsel = selection.length;
}
The variable selection contains the selection value of the listbox and that works correctly. For example, the variable selection would hold the text "test". Now I have a "test" array that I want to reference elements in or get it's length.
selection.length doesn't work.
"selection".length doesn't work.
Any help? Thanks,