/ Published in: JavaScript
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
function debug(what){ if(window.console && window.console.firebug){ console.log(what); } else{ alert(what); } } function prueba(){ var algo = document.getElementById('test'); debug(algo); }