myPhone.addEventListener('keyup', function(evt){
let length = this.value.length
if (length < 9) msg.textContent = 'маловато будет!'
else if (length == 9) msg.textContent = 'норм!'
else if (length > 9 && length < 16) msg.textContent = 'э, хватит'
else if (length > 15 && length < 31) msg.textContent = 'больше не надо'
else if (length > 30) msg.textContent = 'остановись, демон!'
})
https://jsfiddle.net/5v7cdb5y/ <div class="progress">
<div class="progress-bar progress-bar-striped active" role="progressbar" aria-valuenow="45" aria-valuemin="0" aria-valuemax="100" style="width: 45%">
<span class="sr-only">45% Complete</span>
</div>
</div>
jQuery("body").on('click', '[href*="#"]', function(e){
var fixed_offset = 100;
jQuery('html,body').stop().animate({ scrollTop: jQuery(this.hash).offset().top - fixed_offset }, 1000);
e.preventDefault();
});
$(document).ready(function() {
$('a[href^="#"]').click(function() {
var target = $(this.hash);
var pxOffset = 100; // Нужный отступ в пикселях
if (target.length == 0) target = $('a[name="' + this.hash.substr(1) + '"]');
if (target.length == 0) target = $('html');
$('html, body').animate({ scrollTop: target.offset().top-$pxOffset}, 1000);
return false;
});
});
при нажатии на кнопку чтоб через 5 секунд произошел редирект
<button onclick="setTimeout('window.location = \'http://google.ru\'', 5000)">Перейти на Google!</button>
<button id="btn_go">Перейти на Google!</button>
<script>
document.getElementById('btn_go').onclick = function() {
setTimeout(function() {
window.location = 'http://google.ru';
}, 5000);
};
</script>
<a href="redirect.php?url=google.ru">Кнопка</a>
sleep(5);
header('Location: http://' . $_GET['url']);
header('Refresh:5;url=page.php');
document.getElementById('btn').addEventListener('click', function () {
window.location.href = 'http://site.ru';
});