Показать сообщение отдельно
  #3 (permalink)  
Старый 12.05.2015, 00:02
Профессор
Отправить личное сообщение для Decode Посмотреть профиль Найти все сообщения от Decode
 
Регистрация: 31.01.2015
Сообщений: 576

<!doctype html>
<html>
<head>
  <meta charset="utf-8">
  <title>Document</title>
</head>
<body>
  <select class="form-select">
    <option value="All">All</option>
  </select> 
  <select class="form-select">
    <option value="All">All</option>
    <option value="25">25</option>
  </select>
  
  <script>
    var selectElems = document.querySelectorAll(".form-select");

    Array.prototype.forEach.call(selectElems, function(item) {
      if(item.options.length == 1) item.style.display = "none";
    });
  </script>
</body>
</html>
Ответить с цитированием