Hey Guys,
I am trying to call out a ISP and I'm doing it like this
<html>
<head>
<script>
function getURLParameter(name) {
return decodeURI(
(RegExp(name + '=' + '(.+?)(&|$)').exec(location.search)||[,null])[1] || ''
); }
var qStr_isp = getURLParameter('isp').replace(/\+/gim," ");
</script>
</head>
<body>
Hello StM here me ISP<script>document.write(getURLParameter('isp'))</script>,
as example</body>
now , my ISP is Mega Cable, S.A. de C.V. even when I check the tracked ISP on
but the displayed ISP in
any idea why?
thank you
it must be the (,) , but how do I fix that? , I know virtually nothing, coding-related
Change to:
<script>document.write(decodeURIComponent(getURLParameter('isp')))</script>
boom, thanks that solved the issue!
appreciate the help 