String.prototype.replaceAll = function(oldValue, newValue) {
return this.split(oldValue).join(newValue);
}
A new type of spam for Google Analytics, will Google do something for this? Related discussion: http://moz.com/community/q/ga-event-t...
String.prototype.replaceAll = function(oldValue, newValue) {
return this.split(oldValue).join(newValue);
}