JSFiddle - React, Tailwind, and code Playground

by seankoole

JavaScript

jQuery(function($) {
  $('.get-my-offers a').each(function() {
    var $this = $(this);
    $this.attr('href', $this.attr('href') + window.location.search);
  });
});