АД
spanNodeText = spanNode.innerHTML
if(spanNodeText.includes(какой именно символ)) {...}
Size: a a a
АД
DM
S

A
I
I
I
VL
VL
и
VL
VL

LF
const getFilteredData = (data, from, to) => data.filter(price => price >= from && price <= to);
console.log(getFilteredData([111, 222, 333, 444], 200, 500));
I
const getFilteredData = (data, from, to) => data.filter(price => price >= from && price <= to);
console.log(getFilteredData([111, 222, 333, 444], 200, 500));
LF
и
VL
$(document).ready(function() {
var from = 300,
to = 400;
$('#wrapper div').filter(function() {
var el = $(this);
if (parseInt(el.html()) < from || parseInt(el.html()) > to) {
return el;
}
}).hide();
});VL