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 1757580719
Write simple parts connected by clean interfaces.
Home
Notebook
Contact us