Can be found here. Make sure you get the latest version at the bottom of the page (version 0.2). Google Analytics is an advanced hit counter.
If you know the index of the element to remove, you could use the splice method, like this:
var a=['one','two','three','four'];
a.splice(1,1); // Removes 1 element from index 1
alert(a); // Results in 'one','three','four'
Array.prototype.remove=function(s){
for(i=0;i<this .length;i++){
if(s==this[i]) this.splice(i, 1);
}
}
var a=['one','two','three','four'];
a.remove('three');
alert(a); // Results in 'one','two','four'