Get current iframe URL

I have iframe in my website …

users browser links inside the iframe …

is there any way using javascript or jquery to know what is the current page url ??

for example : .
the iframe is google.com
after users make search I want to get the search result URL … can I ??

Hi there,

AFAIK this is not possible if the iframes are on different domains (e.g. google.com and mysite.com), as it falls foul of the same-origin access policy.

However, if the iframes are on the same domain, then this should work:

document.getElementById('myiframe').contentDocument.location;  // All good browsers
document.frames['MyFrame'].document.location; // IE

HTH