Thu Jan 05 2017
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
<script>

if (window.location.href.match(/product=(s3|l1)/i)) {

  var spliturl = window.location.search.slice(1).split('&') 

  spliturl = spliturl.filter(function(e) {
     return !e.match(/product=(s3|l1)/i)
  })


  window.location.href = '?' + spliturl.join('&')
}

$(function() {
 run_spo_1();
});


$(function() {
 run_spo_1();
});
</script>