This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
async function deleteOkPosts() { | |
// Получаем элемент при наведении на который появляется блок с "удалить" | |
let selectPostLink = document.body.querySelectorAll('.feed_menu_ic'); | |
for (var i = 0; i < selectPostLink.length; i++) { | |
// Создаем событие наведения на элемент | |
var event = new Event('mouseenter', { | |
'view': window, | |
'bubbles': true, | |
'cancelable': true |