Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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>
share|improve this question

3 Answers

Try this:

function openLink() {
    $(document).ready(function () {
        window.open($("#linkId").attr('href'), '_blank');
    });
}

Doesn't 'click' the link but simulates the same behaviour - as far as I know what you describe isn't possible.

share|improve this answer

try to use

$(document).ready(function() {
var link = $("#linkId");
        link.click();
});
share|improve this answer
.click() triggers the onclick event. It does not trigger the default behaviour of a link, ie following the link. – Rob W Nov 2 '11 at 18:35

change your method into this.

   <script charset="utf-8" type="text/javascript">

    function openLink(){
        var link = $("#linkId");
        window.open(link.attr('href'), link.attr('target') != null ? link.attr('target') : '_self');
    }
</script>

this will handle same as its clicked on it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.