- range.noUiSlider.set([this.value, null]);
+ range.noUiSlider.set([this.value.replace(/\s/g, ''), null]);
Чем отличается событие клика от button.click()
button.click()
- программный тригер клика на кнопке без участия пользователя. То есть клик из под скрипта.Как вообще сформулировать гуглу запрос на эту тему, что бы статью какую-то почитать
let a = [
{
"code":"CL",
"tnved10":"7318158100",
"2019":"33",
"2020":"0.00",
"2021":"0.00"
},
{
"code":"CN",
"tnved10":"7318158100",
"2019":"7540001.66",
"2020":"8164813.34",
"2021":"20980774.64"
}]
let b = a.reduce((acc, current) => {
[2019, 2020, 2021].forEach(i => acc[i] += Number(current[i]))
return acc
}, {'2019': 0, '2020': 0, '2021': 0});
console.log(b)
const years = [2019, 2020, 2021]
let b = a.reduce((acc, current) => {
years.forEach(i => acc[i] += Number(current[i]))
return acc
}, {'2019': 0, '2020': 0, '2021': 0});
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
[R=301,L]
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
RewriteRule ^(.*)index\.(php|html|htm)$ https://%{HTTP_HOST}%$1 [R=301,L]
%$1
/
или /$1
RewriteRule ^(.*)index\.(php|html|htm)$ https://%{HTTP_HOST}/ [R=301,L]
.block {
foo: bar;
&_element {
bar: baz;
}
}
Но при использование вложенности scss формируется длинный селекторСам факт использования SASS никак на сложность селекторов не влияет. Результат зависит от исходного кода, а не от инструмента компиляции.
::before{
position: absolute;
content: url('assets/img/31.svg');
display: block;
width: 40px;
height: 40px;
left: -45px;
top: 0;
bottom: 0;
margin: auto 0;
}
::before{
position: absolute;
content: url('assets/img/31.svg');
display: block;
width: 40px;
height: 40px;
left: -45px;
top: 50%;
transform: translateY(-50%);
}
var array = [];
$('.inner-menu > span').each(function(){
array.push({
object: $(this),
name: $(this).text(),
sub: $(this).data('sub'),
pnd: $(this).data('pnd'),
otd: $(this).data('otd'),
});
});
console.log(array);
[{"name":"Текст","sub":1,"pnd":2,"otd":3},{"name":"Текст","sub":1,"pnd":2,"otd":3},{"name":"Текст","sub":1,"pnd":2,"otd":3},{"name":"Текст","sub":1,"pnd":2,"otd":3},{"name":"Текст","sub":1,"pnd":2,"otd":3},{"name":"Текст","sub":1,"pnd":2,"otd":3},{"name":"Текст","sub":1,"pnd":2,"otd":3},{"name":"Текст","sub":1,"pnd":2,"otd":3}]
<?php
echo do_shortcode(... );
?>
<?php
echo do_shortcode(
'[contact-form-7 id="11" title="Contact Form 7"]'
);
?>