I've tried a few different things but nothing really worked, basically i need to get the current location/url from the iframe, get the part i want and return it to the hash in the url. how can i do this in javascript?
+1
A:
Select the correct iframe element, pull out the src attribute, do your stuff, assign src to window.location,hash
var iframe = $('iframe');
var src = iframe.attr('src');
window.location.hash = src;
EDIT
If you want to get dynamic location from an iframe
you have to access contentWindow
property:
var iframe = $('iframe');
var contentWnd = iframe.attr('contentWindow');
var url = contentWnd.window.location.href;
window.location.hash = url;
also interesting reading on getting the contentWindow property:
Juraj Blahunka
2010-04-19 21:23:11
The src is not updated when the user is browsing/going to different pages inside the iframe thus it defeats the purpose. any other solutions?
Adam
2010-04-19 22:47:04
+1 Nice answer, but sadly I think there are still cross domain issues.
fudgey
2010-04-21 14:18:54