I just want to disable the ability for a user to click on an element for some condition. Here is some of the code I am working with:
$(\'#navigation a\
Raw Javascript can accomplish the same thing pretty quickly also:
document.getElementById("myElement").onclick = function() { return false; }