2
How do I put the event button to access the following page:
In Html:
<a id="navMn">Blog</a>
I have the following javascript code, which is in error:
function abreOjnl(){
window.open('../menu/blog.html');
}
document.getElementById('navMn').addEventListener('click', abreOjnl);
Leandro, managed to accomplish what he wanted using <a href=" ?
– RXSD