Using jQuery, I set a link tag's click handler like this:
$('#lnk').click(handleClick);
handleClick does something like this:
function handleClick() {
var $this = $(this);
...
}
Now I have a need to directly call handleClick() outside of #lnk being clicked. Is there a way for me to set this
when calling handleClick?