Skip to navigation
How to debug a javascript object?
07.12.13
Reply
Anonymous
for debugging a javascript object simple give this object to the following function: /****************************************************************** * Debug Function ******************************************************************/ function debug(obj) { var str; for(var i in obj) str+=i+"="+obj[i]+";\n" alert(str); }
07.12.13
Reply
Anonymous
Information Epoch 1736460343
Work your system no matter how imperfect, and modify it as you go.
Home
Notebook
Contact us