I want to simulate a click on a link using javascript but it doesn't work. The target is _blank, so it will open in other chrome tab (window.open() doesn't have the exatly same behaviour).
<input type="button" value="Test" onclick="openLink()" />
<a href="./mypage.html" target="_blank" id="linkId">my link</a>
<script type="text/javascript" charset="utf-8">
function openLink(){
var link = $("#linkId");
link.click();
}
</script>