InterviewSolution
Saved Bookmarks
| 1. |
How To Write A Script For "select" Lists Using Javascript |
|
Answer» 1. To REMOVE an ITEM from a LIST set it to null. 2. To truncate a list set its length to the maximum size you desire. 3. To delete all options in a select object set the length to 0. 1. To remove an item from a list set it to null. 2. To truncate a list set its length to the maximum size you desire. 3. To delete all options in a select object set the length to 0. |
|