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.
$(document).ready(function () {
    $(":button").click(function () {
        $(this).next('a').click();
    });
});

HTML

<div style="text-align:center">
            <input type="button" value="More" class="button">
            <a style="display:none" href="/Resource/PhysicianMaterials">aaa</a>
        </div>

in this code .click() dont fired for tag, can anyone say what is a problem?, Thanks

share|improve this question

1 Answer

up vote 5 down vote accepted

The click event is firing, however, a click does not go to the URL when you're talking about an anchor (that happens at the browser/native event level, it's not JavaScript triggered).

Instead you need to do that navigation yourself, like this:

$(document).ready(function () {
    $(":button").click(function () {
        window.location = $(this).next('a').attr('href');
    });
});
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.