$('.intro').each(function(e){
/friend/i.test($(this).html()) && $(this).css('background-color', 'silver');
});
$('.intro')
.filter((i, n) => $(n).text().toLowerCase().includes(t))
.css('background-color', 'silver');
for (const n of document.getElementsByClassName('intro')) {
if (n.textContent.toLowerCase().indexOf(t) !== -1) {
n.style.backgroundColor = 'silver';
}
}
.highlight {
background-color: silver;
}
document.querySelectorAll('.intro').forEach(function(n) {
n.classList.toggle('highlight', ~n.innerText.search(this));
}, RegExp(t, 'i'));
var fileJSON= {...}
<script src="pathToFile.json"></script>
<script>
if(fileJSON) console.log(fileJSON);
</script>
var computedStyle = window.getComputedStyle(document.documentElement);
var fontSize = computedStyle.fontSize; // 16px
var remWidth = document.body.clientWidth / parseInt(fontSize); // parseInt что бы избавиться от 'px' и превратить из строки в число
или мне нужна отдельная таблица, в которой будет фиксироваться именно разница, и уже по ней строить график?
Месяц, год Значение Дельта
Январь, 2018 26,00 -
Февраль, 2018 28,00 2,00
Март, 2018 29,60 1,60
Апрель, 2018 32,10 2,50
Май, 2018 33,00 0,90
Июнь, 2018 35,00 2,00
Июль, 2018 37,00 2,00
Август, 2018 38,00 1,00
Сентябрь, 2018 39,26 1,26
Октябрь, 2018 40,86 1,60
Ноябрь, 2018 42,12 1,26
Декабрь, 2018 42,98 0,86
Январь, 2019 43,80 0,82
let arr = [
{"A7" : [14, 2]},
{"A8" : [17, 2]},
{"A9" : [17, 8]},
{"A10": [20, 8]},
{"A1" : [ 2, 2]},
{"A4" : [ 8, 2]},
{"A3" : [ 5, 2]},
{"A5" : [ 8, 8]},
{"A6" : [11, 2]},
{"A2" : [ 2, 8]}
];
arr.sort((a,b) => {
a = Object.values(a)[0];
b = Object.values(b)[0];
if (a[0] > b[0]) return 1;
if (a[0] == b[0]) return (a[1] > b[1]);
if (a[0] < b[0]) return 0;
});