Can I change the href by javascript?
I use the following code in but it doesn't work:
<base href="/" />
<script type="text/javascript">
function setbasehref(basehref) {
var thebase = document.getElementsByTagName("base");
thebase[0].href = basehref;
}
//setbasehref("/");
setbasehref("http://newurl.com");
</script>