/ Published in: JavaScript
Expand |
Embed | Plain Text
function debug(what){ if(window.console && window.console.firebug){ console.log(what); } else{ alert(what); } } function prueba(){ var algo = document.getElementById('test'); debug(algo); }
You need to login to post a comment.
