Как узнать при сколе на какой странице находишься в данный момент?
Как осуществить переход по страницам?
@media only screen and (max-width: 1024px)
.bee3D--effect__carousel {
transform: scale(0.9);
margin: -38px 0;
}
@media only screen and (max-width: 786px)
.bee3D--effect__carousel {
transform: scale(0.8);
margin: -65px 0;
}
@media only screen and (max-width: 610px)
.bee3D--effect__carousel {
transform: scale(0.67);
margin: -93px 0;
}
@media only screen and (max-width: 480px)
.bee3D--effect__carousel {
transform: scale(0.55);
margin: -120px 0;
}
@import url("");
$('#form').submit(function() {
var faults = $('input').filter(function() {
var thisReturn = $(this).data('required') && $(this).val() === "";
if (thisReturn === true) {
error.innerHTML = ('<span style="color:#e74c3c">Введите пароль</span>');
}
return thisReturn ;})
.css("border-color", "red");
if(faults.length) return false;
});
// следующий раз вызываем себя, когда закончится текущая секунда
setTimeout(update, millis);
if ((diff < 1000) || (cur - baseTime > 24*60*1000)) {
setTimeout(update, millis);
}
#container1 {
display: none;
}
$('[data-reveal-id="myModal"]').click(function() {
jQuery.ajax({
url: "mod1.html",
dataType: "html",
success: function(response) {
$('#container1').html(response);
$('#container1').addClass('appear');
}
});
});
$('table').each(function(iTable, thisTable) {
...
$(this).find('tr').each(function(iRow, thisRow) {
...
});
});