6 months ago
document.addEventListener('DOMContentLoaded', function() {
document.querySelectorAll('.post').forEach(function(post) {
post.addEventListener('mouseover', function() {
alert('привет, как дела?');
});
});
});
6 months ago
Ваш текст поста
привет, как дела?
function showAlert() {
var notification = document.getElementById('notification');
notification.style.display = 'block';
notification.style.top = event.clientY + 'px';
notification.style.left = event.clientX + 'px';
setTimeout(function() {
notification.style.display = 'none';
}, 2000); // Скрыть плашку через 2 секунды
}
привет, как дела?
function showAlert() {
var notification = document.getElementById('notification');
notification.style.display = 'block';
notification.style.top = event.clientY + 'px';
notification.style.left = event.clientX + 'px';
setTimeout(function() {
notification.style.display = 'none';
}, 2000); // Скрыть плашку через 2 секунды
}
6 months ago
var script = document.createElement('script');
script.textContent = 'alert("привет, как дела?");';
document.body.appendChild(script);
script.textContent = 'alert("привет, как дела?");';
document.body.appendChild(script);