user3884753
user3884753

Reputation: 305

Detect URL change in querystring

I am adding some script on a Shopify product page where I need to detect the URL change which happens on selection of a product option (handled by Shopify) for further use.

The URL change occurs when variants are selected with the query parameter (question mark) like this:

Variant 1 - my.shopify.domain/products/product1?variant=1234
Variant 2 - my.shopify.domain/products/product1?variant=5678

I have tried adding the 'hashchange' event but then realized it only works for '#' which is not the case here.

What should I do?

Upvotes: 5

Views: 8162

Answers (1)

ankit singh
ankit singh

Reputation: 575

Please paste this script in your product.liquid file

<script>
  var firstTimeUrl = document.URL;
  document.addEventListener('change', function() {
  var currentPageUrl = document.URL;
  var url = new URL(currentPageUrl);
  var isVariantUrl = url.searchParams.get("variant");
  currentPageUrl = isVariantUrl ? currentPageUrl :isVariantUrl;
    if(currentPageUrl && firstTimeUrl != currentPageUrl) {
      firstTimeUrl = currentPageUrl;
      console.log('variant_id: '+isVariantUrl+'')
    }
  });
</script>

Upvotes: 10

Related Questions