Possible Duplicate:
Override default behaviour for link ('a') objects in Javascript
What is the best way for making entire page links in home page read only (non clickable like href=# or href="javascript:void()" based on a user action.
I wanted to use only Javascript and CSS to achieve this.
try
with jquery
$("a").click(function() { return false; });vanilla js