Created
December 21, 2021 22:29
-
-
Save arturmkrtchyan/e2f5c6e2ba0ebd6951b632b34cf4fbb3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
document.addEventListener("DOMContentLoaded", function () { | |
let recordId = getUrlParam('recordId'); | |
var exitCondition = setInterval(function() { | |
$('a').each(function() { | |
if($(this).attr('href') && $(this).attr('href').endsWith('{URL_PARAM:recordId}')) { | |
const url = $(this).attr('href').replace('{URL_PARAM:recordId}', recordId); | |
$(this).attr('href', url); | |
} | |
}); | |
}, 600); | |
function getUrlParam(name) { | |
const url = new URL(window.location.href); | |
let param; | |
for(var key of url.searchParams.keys()) { | |
if(key.toLowerCase() === name.toLowerCase()) { | |
param = url.searchParams.get(name); | |
break; | |
} | |
} | |
if(!param && name.toLowerCase() === 'recordid') { | |
param = getRecordIdFromPath(); | |
} | |
return param; | |
} | |
function getRecordIdFromPath() { | |
let pathName = window.location.pathname; | |
if (pathName.indexOf('/r/rec') !== -1) { | |
pathName = pathName.substr(pathName.indexOf('/r/rec') + 3); | |
if (pathName.indexOf("/") !== -1) { | |
pathName = pathName(0, pathName.indexOf('/')) | |
} | |
return pathName; | |
} | |
return undefined; | |
} | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment