Created
May 10, 2012 09:12
-
-
Save hiroshineya/2652039 to your computer and use it in GitHub Desktop.
Javascript ConsoleLog
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // need jquery | |
| function printLog(str) { | |
| if(!$.browser.msie) { | |
| console.log(str); | |
| } | |
| }; | |
| function printWarn(str) { | |
| if(!$.browser.msie) { | |
| console.warn(str); | |
| } | |
| }; | |
| function printError(str) { | |
| if(!$.browser.msie) { | |
| console.error(str); | |
| } | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment