$(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