PassPack? autologin button doesn't work with some websites because jQuery fails to manage events.
Consider, for example, http://www.digg.com.
If you run the following code with Firebug to inject jQuery into a page:
var s1=document.createElement('script');
s1.src='http://www.passpack.com/beta/js/jquery-1.2.2.js';
document.getElementsByTagName('head')[0].appendChild(s1);
and after the following:
jQuery(document).click(function(e) {
alert(1);
});
you can view that clicking on body of Digg.com, it alerts 1.
But, if you try it, for example, on http://www.reddit.com, the bind fails. It produces an error connected to the following jQuery code:
// Handle event binding
jQuery.fn[name] = function(fn){
return fn ? this.bind(name, fn) : this.trigger(name);
};
Note that with versions of jQuery < 1.2 it worked well.