| 
 Очитстка списка Добрый день, друзья! Подскажите пожалуйста, почему не очищается список? HTML: <body><p style="font-size:24px" align="center"><b>Фрукты</b></p> <table width="600" align="center"><colgroup><col width="210"><col width="390"></colgroup> <tbody><form name="fruct_form"> <tr><td class="left">Фрукты:</td> <td><select id="fruct_id" name="fruct"> <option class="A" selected="selected">Апельсин</option> <option class="A">Вишня</option> <option class="B">Яблоко</option> <option class="B">Банан</option> </select></td></tr> </form></tbody></body> JS: 
var f=document.getElementsById("fruct_id");
for (var i=f.options.length-1; i >= 0; i--) {
  f.options.remove(i)
}
 | 
| 
 getElement getElementById("fruct_id") | 
| 
 Цитата: 
 :thanks: | 
| Часовой пояс GMT +3, время: 21:59. |