When clearing HTML elements such as select boxes, tables, or lists, is it better/faster to remove the nodes (e.g., select.options.remove(i), table.deleteR
select.options.remove(i)
table.deleteR
In IE you cannot set the innerHTML of a select element. So for a cross-browser solution the only way is to add/remove child nodes.