Click here to Skip to main content
15,910,083 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
I have a form with iframe. In than i am loading website. For example let me load www.codeproject.com then if click home on that loaded url i have to get my url value or iframe src value as www.codeproject.com/home. Is it possible? Pls help me to solve this.
Thanks in advance.
Posted
Comments
sri senthil kumar 17-Apr-13 2:47am    
Your saying like in ur page you are loading the codeproject site in a iframe and you want the url in parent page whenever page is nvaigated inside iframe right?
Member 9762654 17-Apr-13 2:53am    
yes exactly
sri senthil kumar 17-Apr-13 4:45am    
Try this code.
var ifrm = document.getElementById('iframe id').contentWindow.document;
alert("Url: " + ifrm.URL + ", \nEncoded url: " + ifrm.URLUnencoded + ".");
Member 9762654 17-Apr-13 6:27am    
i am getting permission denied to access document
sri senthil kumar 17-Apr-13 6:44am    
oh!! I was trying with local files it worked. Will check and tell you

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900