Показать сообщение отдельно
  #4 (permalink)  
Старый 08.05.2018, 11:18
Аватар для рони
Профессор
Отправить личное сообщение для рони Посмотреть профиль Найти все сообщения от рони
 
Регистрация: 27.05.2010
Сообщений: 33,072

dantist433,
<!DOCTYPE html>

<html>
<head>
  <title>Untitled</title>
  <meta charset="utf-8">
  <style type="text/css">
  </style>
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>

  <script>
$(function() {
  var pCounter = 0;
  $(".icon_a").each(function(idx, el) {
    pCounter = idx;
    setTimeout(function() {
      $(el).click();
      !--pCounter && location.reload();
    }, pCounter * 332 + Math.floor(Math.random() * 120));
  });
});
  </script>
</head>

<body>
    <input type="checkbox" class="icon_a">
    <input type="checkbox" class="icon_a">
    <input type="checkbox" class="icon_a">
    <input type="checkbox" class="icon_a">
    <input type="checkbox" class="icon_a">
    <input type="checkbox" class="icon_a">
    <input type="checkbox" class="icon_a">
    <input type="checkbox" class="icon_a">
    <input type="checkbox" class="icon_a">
    <input type="checkbox" class="icon_a">
</body>
</html>
Ответить с цитированием