I want to disable links in a page.
I used the function below, which is working in FF3 & IE7, but it is not working on IE6.
$(document).ready(function() {
$("a").attr("href", "")
.unbind("click")
.click(function() { return false });
});