Solo necesitas tomar a los elementos que posean explícitamente el atributo 
disabled, recorrer al conjunto resultante y habilitarlos.    
Código Javascript
:
Ver original- function deshabilitar(){ 
-     [].forEach.call(document.querySelectorAll("[disabled]"), function(elem){ 
-         elem.disabled = false; 
-     }); 
- } 
Saludos