<script type="text/javascript">
function disable(){
links=document.getElementsByTagName('a');
for(var i=0; i<links.length; i++) {
links.href="javascript:return false";
}
}
window.onload=disable;
</script>
This disables all links with you actually doing any work. Just put it at the end of the </body>.
function disable(){
links=document.getElementsByTagName('a');
for(var i=0; i<links.length; i++) {
links.href="javascript:return false";
}
}
window.onload=disable;
</script>
This disables all links with you actually doing any work. Just put it at the end of the </body>.