Подскажите что тут не правильно, ведь text() возвратить должен ответ сервера в виде текста?
fetch(ajaxurl, {
method: 'POST',
body: formData
})
.then(resp => resp.text())
.then(data => alert(data))
elem.parentElement
el.parentElement.clientWidth
getComputedStyle(el.parentElement).width // более точный результат, так как спрашивает у браузера конечные стили. Но, соответственно, и отработает медленнее(на глаз не заметно)
const result = {};
const arr = [{ name: "cat" }, { name: "cat" }];
arr.forEach(function(item){
if(result[item.name]) {
result[item.name].count += 1;
} else {
result[item.name] = {...item, count: 1};
}
})
console.log(result) // { cat: { name: 'cat', count: 2 } }
console.log(Object.values(result)) // [{ name: "cat", count: 2 }]
console.log(arr) // [{ name: "cat" }, { name: "cat" }];
<figure>
<img src="castle1423.jpeg" title="Etching. Anonymous, ca. 1423."
alt="The castle has one tower, and a tall wall around it.">
<img src="castle1858.jpeg" title="Oil-based paint on canvas. Maria Towle, 1858."
alt="The castle now has two towers and two walls.">
<img src="castle1999.jpeg" title="Film photograph. Peter Jankle, 1999."
alt="The castle lies in ruins, the original tower all that remains in one piece.">
<figcaption>The castle through the ages: 1423, 1858, and 1999 respectively.</figcaption>
</figure>
<figure>
<figcaption>The castle through the ages: 1423, 1858, and 1999 respectively.</figcaption>
<figure>
<figcaption>Etching. Anonymous, ca. 1423.</figcaption>
<img src="castle1423.jpeg" alt="The castle has one tower, and a tall wall around it.">
</figure>
<figure>
<figcaption>Oil-based paint on canvas. Maria Towle, 1858.</figcaption>
<img src="castle1858.jpeg" alt="The castle now has two towers and two walls.">
</figure>
<figure>
<figcaption>Film photograph. Peter Jankle, 1999.</figcaption>
<img src="castle1999.jpeg" alt="The castle lies in ruins, the original tower all that remains in one piece.">
</figure>
</figure>
// так как Вы упомянули jQuery, то будем пользоваться старыми методами создания массива из html коллекции и var
var items = Array.prototype.slice.call(document.querySelectorAll('.cart__box-desktop-item'))
var emptyMessageElement = document.querySelector('.cart__box-desktop-message')
// определяем что у всех есть класс none
var isAllHidden = items.every(function(item){return item.classList.contains('none')})
if(isAllHidden) {
emptyMessageElement.classList.remove('none')
} else {
emptyMessageElement.classList.add('none')
}
$('.cat-article').addClass
$(this).closest('.cat-article').addClass
this.closest('.cat-article').classList.add('cat-article-title')
this.parentElement.classList.add('cat-article-title')
.about-photo1-mobile:hover .about-photo1-hover {
display: block;
width: 762px;
height: 722px;
left: calc(50% - 332px/2 - 1px);
background: rgba(237, 231, 230, 0.9);
margin-top: -380px;
padding-top: 47px;
transform: translate3d(0,0,0); /* new */
}
picture
рендерит img
. img
же можно в figure
?