$(document).ready(function(){ if(window.location.hash.match(/#ref=[a-zA-Z0-9_\-]+/)){ $('a').each(function(ind,el){ var $temp = el.getAttribute('href'); if($temp != null){ if($temp.match(/kredweb-[a-zA-Z0-9_]+/)){ var sub = $temp.match(/kredweb-[a-zA-Z0-9_]+/); el.setAttribute('href',$temp.replace(sub[0],sub[0]+'-'+window.location.hash.replace("#ref=",""))); } if($temp.match(/kredittportalen\.no/)){ var sub = window.location.hash.match(/#ref=[a-zA-Z0-9_\-]+/); el.setAttribute('href',$temp+sub[0]); } if($temp.match(/^\//)){ var sub = window.location.hash.match(/#ref=[a-zA-Z0-9_\-]+/); el.setAttribute('href',$temp+sub[0]); } } $temp = el.getAttribute('url'); if($temp != null){ if($temp.match(/kredweb-[a-zA-Z0-9_]+/)){ var sub = $temp.match(/kredweb-[a-zA-Z0-9_]+/); el.setAttribute('url',$temp.replace(sub[0],sub[0]+'-'+window.location.hash.replace("#ref=",""))); } } }); } });