is it possible to disable several href links, as I could do with having several href tags but with out them trying to load what ever is within the href, as I want manipulate the href content myself if you see what I mean
For example something like
<a href ="content" data-role="disable" >sdasdsa</a>
so if this link is click it does nothing, so that I can then manipulate it in my code further down:
$('#idname a').bind('click',function(e){
//do some code
});
Many Thanks