I am using the following code to turn off all href links in the page div:
// limits links disabling to page id
var thisdisable = dojo.query("a #page").connect("onclick",function(e)
{ e.preventDefault(); // stop the event
});
return true;
};
How do I turn the links back on?
