Make a link unclickable with jQuery
25 Sep 2012If you need to make a html link unclickable a quick solution is to use the below jQuery
//make selected link unclickable
$('a.no_click').attr( 'onClick', 'return false' );
Might not be pretty but it works fine