Interview question inner
by Artem
HTML
<a id="outer" href="http://site.com">
<em id="inner">Test</em>
</a>
JavaScript
// Will happen if you click on a link
inner.onclick = function(e) {
e.preventDefault();
}
by Artem
<a id="outer" href="http://site.com">
<em id="inner">Test</em>
</a>
// Will happen if you click on a link
inner.onclick = function(e) {
e.preventDefault();
}