sdiama
10/20/2016 - 4:07 AM

Disable Links with jQuery

Disable Links with jQuery

$("a").click( function(event) {
	event.preventDefault();
});