Показать сообщение отдельно
  #3 (permalink)  
Старый 13.02.2014, 15:00
Аватар для рони
Профессор
Отправить личное сообщение для рони Посмотреть профиль Найти все сообщения от рони
 
Регистрация: 27.05.2010
Сообщений: 33,075

Dark_Delphin,
<!DOCTYPE HTML>
<html>
<head>
  <title>Untitled</title>
  <meta charset="utf-8">
  <script src="http://code.jquery.com/jquery-latest.js"></script>
  <script>
$(function () {
      $(".gencol").each(function (i) {
          var color = "#" + ((1 << 24) * Math.random() | 0).toString(16);
          $(this).css("background-color", color);
      });
  })
</script>
</head>
<body>
<div class="gencol" style="width:100px;height:100px;"></div>
<div class="gencol" style="width:100px;height:100px;"></div>
<div class="gencol" style="width:100px;height:100px;"></div>
</body>
</html>
Ответить с цитированием