This page should load fine in any browser except for IE7.
IE7 will refuse to load the file, and will issue an "Operation Aborted" error.
For more info, check out my write-up "Bit.ly Firefox Plugin Problem - Operation Aborted in IE7"
The code below is loaded in this file:
// This load file is injected by the preview plugin.
_load = function(u) {
var e = document.createElement('script');
e.setAttribute('language','javascript');
e.setAttribute('type', 'text/javascript');
e.setAttribute('src',u); document.body.appendChild(e);
}
_loadCss = function(u) {
var e = document.createElement('link');
e.setAttribute('type', 'text/css');
e.setAttribute('href', u);
e.setAttribute('rel', 'stylesheet');
e.setAttribute('media', 'screen');
try {
document.getElementsByTagName('head')[0].appendChild(e);
} catch(z) {
document.body.appendChild(e);
}
}
_loadCss('http://s.bit.ly/preview.s3.css?v=4.22');
_load('http://s.bit.ly/preview.s3.js?v=4.22'); // +"&t="+(new Date()).getTime()