Skip to content

Instantly share code, notes, and snippets.

@hoanganh25991
Created January 14, 2016 02:58
Show Gist options
  • Save hoanganh25991/945dd1b9c62abd507afe to your computer and use it in GitHub Desktop.
Save hoanganh25991/945dd1b9c62abd507afe to your computer and use it in GitHub Desktop.
print object from javascript to html
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