Skip to content

Instantly share code, notes, and snippets.

@ahmadajmi
Created June 17, 2021 09:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ahmadajmi/a9d3a69856520db014f01e535ac54d9b to your computer and use it in GitHub Desktop.
Save ahmadajmi/a9d3a69856520db014f01e535ac54d9b to your computer and use it in GitHub Desktop.
<script>
$(document).ready(function() {
// =====================
// Members subscription
// =====================
// Parse the URL parameter
function getParameterByName(name, url) {
if (!url) url = window.location.href;
name = name.replace(/[\[\]]/g, '\\$&');
var regex = new RegExp('[?&]' + name + '(=([^&#]*)|&|#|$)'),
results = regex.exec(url);
if (!results) return null;
if (!results[2]) return '';
return decodeURIComponent(results[2].replace(/\+/g, ' '));
}
// Give the parameter a variable name
var action = getParameterByName('action');
$(document).ready(function () {
if (action == 'subscribe') {
window.location = 'URL'; // Replace URL with the website page you want to redirect to
}
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment