Great catches, Scott!
I never noticed that CJ was reporting on JavaScript compatible browsers rather than JavaScript enabled browsers (which is far more important). That certainly accounts for the difference in numbers (99% may be compatible while only 80-90% have it enabled).
As for the POST stuff, that's been there from the start and I thought it was probably an error. It just didn't make sense, and I figured they were mixing up technical terms. If you're right, I see a big part of why they're requiring JavaScript.
As for a workaround to pass POST information in a redirect, you could always land on a page that built a form and then use JavaScript to automatically click the form. For those without JavaScript, they would still have to click manually. Not pretty, but it would work.
A few other points to consider:
1) Will they lose the referer information with JavaScript links? Depending on how they implement it, they might. Referers are a valuable tool in fraud detection.
2) If they're doing this to stop parasites, it won't be effective. Almost no parasites work by just changing the URL. Plus, POST data is no harder for them to get to than HEADER data, and several newer parasites modify header data for insidious reasons that I won't go into here.
3) If they're doing this to pass PageRank, it's a moot point. PageRank doesn't get passed through JavaScript.
thanks michael. I don't think the POST stuff is a mistake.
yeah, I thought about that redirect solution with a POST and javascript. I built it here and have been saving it for when these discussions came up...
http://www.jangro.com/tools/jsredirect.php
I think they "why" is becoming less important and will become clearer in due time.
I'm focusing more on the "what" for now.
Instead of focusing on the theories and speculations as to why CJ is going forward with what seems to many of us outsiders as insane, my primary focus has always been on the technical aspects. Hey, I'm an engineer, not a politician.
Commission Junction's new FAQ remains vague on technical details, but it is at least a little less vague.
Here are some interesting points from the new document.
Can publishers still modify links? One of the major sticking points and arguments against the LMI is that publishers give up control of their link content (image and link text) to the advertiser. That Javascript will allow the advertiser to change link text to something that breaks the publisher site's logic and meaning. The updated FAQ should dispel this for good. (emphasis is mine)
How CJ plans to allow publishers to make these overrides remains to be seen, but that pretty much kills the argument that advertisers shouldn't have final control over what affiliates put on their websites.
What about browsers that don't support JavaScript? This one still makes me very uncomfortable. Here's what CJ says about this.
"Browsers that don't support JavaScript"? Is that User Agents that don't have JavaScript support at all? The 1% number seems like that's what they're measuring, Otherwise, unless you've instrumented javascript tracking, you cannot accurately measure this number.
In that case, 1% would be the absolute baseline for lack of Javascript support. Add people disabling Javascript to that number and it adds up to larger numbers that people are reporting. For example, I would bet that some large corporations disable Javascript on all employees browsers as a security measure.
This is the one thing for which CJ cannot offer workarounds.
What about publishers who have a database driven site? Will they be required to make changes to my database?
This new item is interesting, and for the first time, starts to hint toward what's behind the Javascript tags -- POST requests instead of GET requests. Perhaps we can manufacture our own HTTP requests that implement the POST method (emphasis mine):
This gets very technical quickly, but basically, they seem to be saying that if we keep affiliate links in our own database for incorporation into a website, and even for performing local redirects (e.g., for tracking), as long as we send the requests through a HTTP POST (not GET), we'll be ok. My question: Even without employing any javascript?
The pertinent difference between a POST and GET is pretty simple. In a GET request, parameters are visibly incorporated into the URL. In a POST request, the parameters are buried in the invisible HTTP header. Creating post requests is more complicated. The only way to create a POST request through a browser (which we must do because we're tracking users), it must be submitted through a form.
As for local redirects, I cannot come up with a good solution to redirect to another website with POST HTTP headers intact. Redirects are done by browsers using a GET request. I hope CJ has this one covered.
I'll be covering the technical and performance aspects in detail as information becomes available.