I'm trying to disable page links on a SharePoint page using jQuery.
I tried this:
$("td.ms-vb a").click(function() {
Please help.
I tried this:
$("td.ms-vb a").click(function() {
$(this).removeAttr("onclick");
});
I also tried using the preventDefault method, removing the href attribute, adding return false and a lot of other methods.Please help.