Hey guys,
I found the ISP NAME token in
but not sure how & where to add the ISPID token.
I'll be happy for any guidance regarding this.
Thanks!
Maya
Hi Maya,
I guess you are looking to add ISP token on your landing page in order to dynamically display the ISP provider to your landing page visitors. If that is the case, you need to follow the below simple steps.
Step 1: Add the below JavaScript between your landing page <head> </head> tags.
<script>
function getURLParameter(name) {
var query = window.location.search.substring(1);
var vars = query.split("&");
for (var i=0;i<vars.length;i++) {
var pair = vars[i].split("=");
if(pair[0] === name){return decodeURI(pair[1]);}
}
return "";
}
</script>
<script>document.write(getURLParameter('isp'))</script>
<body>
<p>
Hello <script>document.write(getURLParameter('isp'))</script> user, you just won!
</p>
</body>

Thanks platinum,
that was very helpful!!