Fix Barron's links to sign in/read more articles

Bottom (recommendation) article-link stays unaltered (probably timing issue).
Sometimes article holds on to multiple recommendations layout (only intros).
merge-requests/1/head
magnolia1234 4 years ago committed by GitHub
parent d81aa3d3d7
commit 23bf64ce61

@ -489,6 +489,21 @@ else if (matchDomain('challenges.fr')) {
});
}
else if (window.location.href.indexOf("barrons.com") !== -1) {
var href = '';
const signin_links = document.querySelectorAll('a.primary-button--link');
for (let i = 0; i < signin_links.length; i++) {
href = signin_links[i].href;
if (href.includes('target=')) {
href = href.split('target')[1].split('%3F')[0];
href = href.replace('=', '').replace('%3A', ':');
href = href.replace('%2F', '/').replace('%2F', '/').replace('%2F', '/').replace('%2F', '/');
signin_links[i].href = href;
signin_links[i].text = 'Click';
}
}
}
// General Functions
function removeDOMElement(...elements) {
for (let element of elements) {

Loading…
Cancel
Save