| remove() This method is used to remove an option from the current option list within a SELECT element. The syntax for removing and option in Internet Explorer is as follows with the zero based index value being the value of the remove statement: document.forms[1].formName.options.remove(0)The syntax for removing the option within Netscape Navigator is as follows: document.forms[1].formName.options[0] = nullsyntax: remove(zero-based indexed integer) This method is used with the following: options
|