Показать сообщение отдельно
  #6 (permalink)  
Старый 08.05.2018, 16:49
Аватар для j0hnik
Профессор
Отправить личное сообщение для j0hnik Посмотреть профиль Найти все сообщения от j0hnik
 
Регистрация: 01.12.2016
Сообщений: 3,650

<!doctype html>
<html lang="en">
<head>
	<meta charset="utf-8">
	<title>document</title>
</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">
	<script>
		var elems = document.querySelectorAll(".icon_a")
		 elems.forEach((el,i)=>{
			el.click();
			if(i == elems.length-1) setTimeout(()=>location.reload(),6000);
		});
	</script>
</body>
</html>
Ответить с цитированием