I Want to get hash from this url
http://www.mywebsite.com/#/aaaaaaaa
aaaaaaaa
And add to iframe :
<iframe src="http://www.example.com/url/aaaaaaaa" frameborder="0">
Javascript code :
<script>
var hhash = window.location.hash.substr(1);
alert(hhash);
</script>