Interview question: click on a link
by Artem
HTML
<a href="https://site.com">Текст ссылки</a>
JavaScript
// Will happen if you click on a link
document.onclick = function(e) {
e.preventDefault();
}
by Artem
<a href="https://site.com">Текст ссылки</a>
// Will happen if you click on a link
document.onclick = function(e) {
e.preventDefault();
}