Disable specific Link , Magento
// disable link that contains "Brands" label jQuery("a:contains('Brands')").click(function(e) { e.preventDefault(); //do other stuff when a click happens });