Hello,
I am really stuck in a problem and eager to hear from you.
Let me describe down the code snippet.
expo9_ad = (function() {
var version = "1.20";
var displayAdVersion = "0.3";
function expo9_ad() {
var t = this;
t.host = "a.tribalfusion.com";
t.site = "boxlivetv";
....
}
expo9_ad.prototype.showAd = function () {
.....
}
expo9_ad.prototype.showPopOnlyAd = function () {
....
}
.....
if (e9 != undefined) {
var ad = new expo9_ad();
...
} else {
e9 = new expo9_ad();
...
}
return expo9_ad;
})();
You can review or download the full code at http://tags.expo9.exponential.com/tags/ ... OS/tags.js
expo9_ad is a function or prototype?
If it's a function, the code block inside function() is "function body"?
This is where I got in trouble.
Can you tell me which sites will guide me through it?
Any help would be appreciated.
Christopher


