Created
January 14, 2016 02:58
-
-
Save hoanganh25991/945dd1b9c62abd507afe to your computer and use it in GitHub Desktop.
print object from javascript to html
This file contains 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
function print_r(theObj, div){ | |
div = typeof div == 'undefined'? $('body') : div; | |
if(theObj.constructor == Array || theObj.constructor == Object){ | |
div.append("<ul>") | |
for(var p in theObj){ | |
if(theObj[p].constructor == Array || theObj[p].constructor == Object){ | |
div.append("<li>["+p+"] => "+typeof(theObj)+"</li>"); | |
div.append("<ul>") | |
print_r(theObj[p]); | |
div.append("</ul>") | |
} else { | |
div.append("<li>["+p+"] => "+theObj[p]+"</li>"); | |
} | |
} | |
div.append("</ul>") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment