I want create a web page like www.domain.com/iframe that load a cross-domain website on it like yahoo.com. visitor want browse on iframe page (yahoo.com) and my main page must always detect iframe url.
Because ross-domain iframe policy its not access it via
document.getElementById('myframe').contentWindow.location.href;
I do some googling on it, ways like jquery PostMessage , porxy ifrmae .... but It not work for me. my iframe is not on my access to add java functions.
I dont have coercion to use iframe, I want a technique to show an other link on my page and know position of that other view on my page to do some things...
please help me in this problem.