Disable links with jQuery


Source Code:

<script>
	$(document).ready(function(){
		$("a").click(function(event) {
			event.preventDefault();
		});
	});
</script>

Reviews and Comments