Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Disable All 'Links' on the Page via JavaScript

0.00/5 (No votes)
25 Feb 2010 1  
How to disable all links on page using JavaScript
In this tip, you will see a JavaScript code snippet to disable all links on the page.

Introduction

While working on one of the features asked by client to disable all the controls of the panel while an asynchronous operation is in process, I encountered that though link buttons are disabled (grayed out), they can still be clicked (thus they still work!). :(

I was looking into why such behaviour occurs and came across the link:
Disable All Links with JavaScript[^]

In order to disable all of the links on the page, we need to add an onclick on all the link buttons and return false. If there is an onclick handler on that, we need to grab it and add it to the link.

Here is the code snippet for it:

window.onload= function(){
        DisableEnableLinks(true)
}
function DisableEnableLinks(xHow){
  objLinks = document.links;
  for(i=0;i<objLinks.length;i++){
    objLinks[i].disabled = xHow;
    //link with onclick
    if(objLinks[i].onclick && xHow){  
        objLinks[i].onclick = 
        new Function("return false;" + objLinks[i].onclick.toString().getFuncBody());
    }
    //link without onclick
    else if(xHow){  
      objLinks[i].onclick = function(){return false;}
    }
    //remove return false with link without onclick
    else if
    (!xHow && objLinks[i].onclick.toString().indexOf("function(){return false;}") != -1){            
      objLinks[i].onclick = null;
    }
    //remove return false link with onclick
    else if(!xHow && objLinks[i].onclick.toString().indexOf("return false;") != -1){  
      strClick = objLinks[i].onclick.toString().getFuncBody().replace("return false;","")
      objLinks[i].onclick = new Function(strClick);
    }
  }
}
String.prototype.getFuncBody = function(){ 
  var str=this.toString(); 
  str=str.replace(/[^{]+{/,"");
  str=str.substring(0,str.length-1);   
  str = str.replace(/\n/gi,"");
  if(!str.match(/\(.*\)/gi))str += ")";
  return str; 
} 

History

  • 25th February, 2010: Initial version

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here