Tue Apr 17 2018
Copied to clipboard! Copy reply
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
// Experience 1

var destination = {
	sitewide: 		'taxday24M749',
	rmsitewide: 	'taxday24M699',
	sale: 			'taxday24M699',
	earthday749: 	'earthday24m749',
	earthday699:	'earthday24m699',
	taxday749: 		'taxday24m749',
	taxday699:		'taxday24m699',
	aprilshowers11: 'aprilshowers24m11',
    aprilshowers759:'aprilshowers24m749',
	aprilshowers699:'aprilshowers24m699',
    earthday599:	'earthday24m599',
	taxday599:		'taxday24m599'   
}

Object.keys(destination).forEach(function(e,i) {    
	if (e == RSI.rsi) {
		var re = new RegExp(e, "g");
		var dst = window.location.href.replace(re, destination[e]);	
		window.location.href = dst
    }
})