document.body.oncontextmenu = function(e){ if (e.target.tagName == 'IMG' && e.ctrlKey) { //e.preventDefault(); // блокировать контекстное меню navigator.clipboard.writeText(e.target.src); }
alert('img' == 'IMG');
document.body.oncontextmenu = function(e){ console.log ('menu') if (e.target.tagName == 'img' && e.ctrlKey) { //e.preventDefault(); // блокировать контекстное меню navigator.clipboard.writeText(e.target.src); } }