I'm currently trying to ensure that when someone clicks a link on my page it opens a new tab instead of simply taking the user there. Unfortunately, I've run into a problem currently I've tried all methods I know of to get a new tab to open when clicking on the link but none of them are working. Does anyone have any idea why? I'm currently using Bulma could this conflict with what I'm trying to do?
<a id="resumeHref"class="navbar-item subtitle has-text-grey-lighter mb-0 m-3"
href="./Resume_Daniel_Joseph_Jr.pdf" target="_blank" rel="noopener">Resume</a>
resumeHref.onclick = function(){
window.open("./Resume_Daniel_Joseph_Jr.pdf",'_blank');