Suppose my url is http://example.com#example.org i want to redirect my current tab "example.com" after 5 sec to query parameter "example.org"
<head>
<title></title>
<script type="text/javascript">
var x = window.location.hash.substr(1);
</script>
<meta http-equiv="refresh" content="4;url=x"/>
</head>
<body>
</body>