Hi is it possible to make all links on a page un-clickable using jQuery? the mouse cursor shouldn't even change when user hovers over the link. I am new to jQuery
I'll start out with something like this
$("a").click(function(){
//what should go here? return false;?
});

