If you’re using jQuery versions 1.4.3+:
$('selector').click(false);
If not:
$('selector').click(function(){return false;});
If you’re using jQuery versions 1.4.3+:
$('selector').click(false);
If not:
$('selector').click(function(){return false;});