A
новых языков нет
на старых места заняты
на еще более старых нужны только сеньоры
Size: a a a
A
NG
function makeCounter() {
var currentCount = 1;
return function() {
return currentCount++;
};
an
function makeCounter() {
var currentCount = 1;
return function() {
return currentCount++;
};
Т
ꟿ
ꟿ
function makeCounter() {
var currentCount = 1;
return function() {
return currentCount++;
};
ꟿ
M
ꟿ
KS
M
ꟿ
ꟿ
Е
<div class="post_short_info">
<h4>{{item['short_info']}}</h4>
</div>
DT
$('.popup').style.display = "block";Я пытался сделать по анологии с более примитивным вариантом, когда в переменную через getElementById суешь элемент и также через style... меняешь
T🐧
$('.popup').style.display = "block";Я пытался сделать по анологии с более примитивным вариантом, когда в переменную через getElementById суешь элемент и также через style... меняешь
DT
DT
let popupToggle = document.getElementById('gift');
popupToggle.onclick = function () {
$('.parallax_viewport, .container').addClass('popup__filter_blur');
$('.popup').attr('style', "display: block;")
};
DT
T🐧