function showObject(object o)
{
var s = "";
for(var i in o)
s += i + ": " + o[i] + "\n";
alert(s);
}
Thursday, December 6, 2007
Subscribe to:
Post Comments (Atom)
This blog is about software development, about the problems we meet in our daily work and how we solve them. What is yatta? Yatta is the exclamation of success. Every realy hard task, done successful and working should end with Yattaaaaaa!!!!!
1 comment:
Events and attaching to events in javascript:
http://msdn2.microsoft.com/en-us/library/ms535873.aspx#
Attaching to event:
http://msdn2.microsoft.com/en-us/library/ms536343.aspx
Post a Comment