Skip to content

Instantly share code, notes, and snippets.

@jec006
Created May 15, 2013 14:44
Show Gist options
  • Save jec006/5584510 to your computer and use it in GitHub Desktop.
Save jec006/5584510 to your computer and use it in GitHub Desktop.
Fixes relative base href's in IE
<script type="text/javascript">
//fix relative base paths in IE
var base = document.getElementsByTagName('base')[0];
base.href = base.href;
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment