Archive for July, 2006
Ads from different domains
Friday, July 7th, 2006
Why is this a problem?
I started this post earlier, now I am working on it.
(my attempts to bulid it on following way failed, because it seems that google is making its iframe inserted dynamically into dom, on body load event so I have other idea in mind, will work on it when I caught some […]
Real JS recursive dump!!!
Friday, July 7th, 2006This can be a real pain in the ass. I was doing similiar stuff, but I can’t find it anymore. Thanks to guys from www….
Here is a code…
// return a string version of a thing, without name.
// calls recursive function to actually traverse content.
function dump(content) {
return dumpRecur(content,0,true) + “\n”;
}
// put content into an alert box
function […]
Json object handling
Thursday, July 6th, 2006when it’s [], then accesing from js is [x], when it’s {,,,} then acessing is like .
