I searched over internet and found no better than this. Basically to disable button click functionality, just add CSS style using jQuery like so:
$("#myLink").css({ 'pointer-events': 'none' });
Then to enable it again do this
$("#myLink").css({ 'pointer-events': '' });
Checked on Firefox and IE 11, it worked.