if ($(document).scrollTop() > 50) {
$('.nav-bar').addClass('nav-bar_collapsed');
}
$(window).scroll(function() {
if($(this).scrollTop() > 50) /*height in pixels when the navbar becomes non opaque*/
{
$('.nav-bar').addClass('nav-bar_collapsed');
} else {
$('.nav-bar').removeClass('nav-bar_collapsed');
}
});
$( document ).ready(function() {
if ($('#input').val().length) {
$('#input').focus();
}
});
Когда определенный раздел истории появляется в поле зрения, в фиксированном блоке увеличивается дата этого раздела.
var data = {
"username": this.state.username,
"password": this.state.password
}
fetch("https://....", {
method: "POST",
headers: headers,
body: JSON.stringify(data)
})
.then(function(response){
return response.json();
})
.then(function(data){
console.log(data)
});
id='edit-submitted-kolichestvo'
. Его клонировали?<input type="hidden" value="currentCount">
for (let prop in checkboxGroup ) {
if (checkboxGroup.hasOwnProperty(prop) && checkboxGroup[prop]['checked']) {
newArray.push(checkboxGroup[prop]['value']);
}
}
if (!document.body.hasAttribute('alreadyClicked')) {
document.body.setAttribute('alreadyClicked', 'true');
$("#year-30").click();
}
var
i, N: integer;
Sum, a, x, y: real;
begin
write('x = ');
readln(x);
Sum := x; { <== Начальная сумма равна первому члену x }
{ Далее выполнять программу имеет смысл только при x ≠ 0
(в противном случае все слагаемые равны 0): }
if x <> 0 then
begin
write('N = ');
readln(N);
a := x; { <== Первое слагаемое в данной сумме }
y := sqr(x); { <== Запоминаем x в квадрате }
for i := 1 to N do
begin
{ Для вычисления i-го значения предыдущее значение
умножаем на x в квадрате (число y) и
делим на произведение последовательных натуральных чисел: }
a := a * y / (2 * i * (2 * i + 1));
Sum := Sum + a { <== Находим сумму }
end
end;
writeln;
writeln('Значение суммы: ', Sum:0:5);
readln
end.
let countryObj = yourObj['_st\lib\helper\geoip\Result_data']['country'];
let result;
for (let prop in yourObj) {
if (yourObj.hasOwnProperty(prop)) {
result = yourObj[prop]['country'];
}
}
$brand_name = 'Ferroz'; // ненужный бренд
foreach($main_array as $g_item) {
foreach($g_item['items'] as $item) {
if ($item['chname'] != $brand_name) {
// Обрабатываем элемент
}
}
.addClass('opened')
- а потом вы не убираете класс, вот и не скрывается потомок. require(path)
require('@/begin/of/path' + endOfPath)
function getImg (path) {
let result
try {
result = require('@/assets/img/' + path)
} catch (e) {
if (e.code !== 'MODULE_NOT_FOUND') {
throw e
}
result = require('@/assets/img/icon/error-load.png')
}
return result
}