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 1732465725
Live free or die.
Home
Notebook
Contact us