command: '../usr/local/lib/libtdjson.so',
const result = words.filter(rates => rates.id == id);
elem.classList.toggle("display");
if (text.is(':visible')){
text.addClass('display');
$('.arrow_down').removeClass('rotate');
}
else {
text.removeClass('display');
$('.arrow_down').addClass('rotate');
}
}
var number;
var res = document.getElementById('result');
f1();
function f1() {
number = Math.ceil( Math.random() * 100);
console.log(number);
};
document.getElementById('button').onclick = function() {
var input = document.getElementById('input').value;
input = parseInt(input);
console.log(input);
console.log('asd')
if (input == number) {
res.innerHTML = 'Вы угадали!';
}
else if (input > number) {
res.innerHTML = 'Вы не угадали! Число меньше';
}
else {
res.innerHTML = 'Вы не угадали! Число больше';
}
}
(function(d){
var display = d.querySelector('#countdown .display')
var timeLeft = parseInt(display.innerHTML)
var timer = setInterval(function(){
if (--timeLeft >= 0) {
display.innerHTML = timeLeft
} else {
display.innerHTML = timeLeft+22
}
}, 1000)
})(document)
[...Object.values(opinions)].filter((option, index, array) => option.limit <= resultCore && resultCore <= array[index +1]).limit
const frontMenu = (...arrayOfLabel) => Telegraf.Extra.markdown().markup((m) => m.inlineKeyboard(
arrayOfLabel.map((a) => a.map((b) => m.callbackButton(b.name, b.callback))),
));
$(document).ready(function () {
let curr = 1;
$('#btn').on('click', function () {
$(`.dot:nth-child(${curr})`).toggleClass('open');
curr++
});
});
$.ajax({
url: url.to.php.file,
type: 'POST',
data: {
// тут пишите данные в виде массива по которым нужно отфильтровать, что-то...
},
dataType: 'json',
contentType: 'application/json',
json: true
}).done(function(data){
console.log(data);
}).always(function(dataError){
console.log(dataError);
});
<?php
header('Content-Type: application/json');
$resultJson = array("text" => "Hello!");
echo json_encode($resultJson);
?>
form{
width: 450px;
border: 1px solid gray;
margin-left: auto;
margin-right: auto;
position: relative;
margin-top: 10%;
border-radius: 15px;
background-color: white;
opacity: 0.98;
transition: 2s;
}
<div class="block-animation"></div>
.block-animation {
width: 130px;
height: 130px;
background-color: #2196F3;
transition: 3s;
}
.block-animation:hover {
background-color: #3F51B5;
height: 400px;
}
let el = document.querySelector('.black')
el.setAttribute('data-id', 'black');
await response.text(); - используется, что бы наглядно было в консоли что все ловит и выводит.
async function ad(){
let response = await fetch('https://api.hh.ru/areas/113');
if (response.ok) { // если HTTP-статус в диапазоне 200-299
// получаем тело ответа
ajson = await response.text();
console.log(ajson);
console.log('a');
} else {
alert("Ошибка HTTP: " + response.status);
}
}
document.addEventListener("DOMContentLoaded", function(event) {
let el = document.querySelector('.s');
console.log(el.style.color);
if(el.style.color == 'red'){
el.style.color = 'blue';
}
});