i\'ve got a page (asp.net) where I trap the click event of a link. i then do some dirty checking and present a dialog to the user,
$(function() { var c
.click() only fires the event handlers for onclick, it doesn't actually make the default action of following the link happen. Probably the quickest method is just to do that manually:
.click()
onclick
window.location= clickedLink.href;
PS. “lose”