- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
<script>
// Experience 2
var destination = {
sitewide: 'taxday3M1899',
rmsitewide: 'taxday3M1799',
sale: 'taxday3M1799',
earthday749: 'earthday3m1899',
earthday699: 'earthday3m1799',
taxday749: 'taxday3m1899',
taxday699: 'taxday3m1799',
aprilshowers11: 'aprilshowers3m27',
aprilshowers749:'aprilshowers3m749',
aprilshowers699:'aprilshowers3m1799',
earthday599: 'earthday3M1699',
taxday599: 'taxday3M1699'
}
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
}
})
// Desktop best value
var bv = $('.oct_2016_best_value').html('Introductory Offer').detach()
$('div.oct_2016_product_square.js_oct_2016_product.js_onemonth_toggle_3 .oct_2016_product_square_content').prepend(bv)
// Mobile best value
var bvm = $('.labelcontain.topper').css({margin: '11px 0 -13px'}).html('Introductory Offer').detach()
$('.mobile_product_label.js_onemonth_toggle_3').before(bvm)
</script>