#5

scot.self's picture
Offline
Joined: 02/11/2010
Juice: 104
#5

btw, the js file doesn't seem to work in IE at all because of the indexOf function not being supported! found in several forums the following solution that, when added to the js file makes IE handle it

if(!Array.indexOf){
    Array.prototype.indexOf = function(obj){
        for(var i=0; i<this.length; i++){
            if(this[i]==obj){
                return i;
            }
        }
        return -1;
    }
}

let me know about the "backwardsness" question?

white screens after enabling By: scot.self (12 replies) Tue, 07/13/2010 - 11:01