HTML:
<a href="#" id="one">this should be disabled button</a>
<a href="#" onclick='$("a#one").click();'>click button 2</a>
Javascript:
$(document).ready(function () {
$('#one').click({
alert("clicked!");
});
});
How do I make the 1st link unclickable, while the 2nd link actually clicks the 1st link.