CodeIgniter Forums
howto get iframe uri? - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21)
+--- Thread: howto get iframe uri? (/showthread.php?tid=10854)



howto get iframe uri? - El Forum - 08-15-2008

[eluser]vile[/eluser]
how do i get iframe uri?
thanks


howto get iframe uri? - El Forum - 08-15-2008

[eluser]Colin Williams[/eluser]
Code:
iFrame = document.getElementById('iframeid');
iFrameSrc = iFrame.getAttribute('src');

Or, if you could care less about accessing the iFrame object any further:

Code:
iFrameSrc = document.getElementById('iframeid').getAttribute('src');



howto get iframe uri? - El Forum - 08-15-2008

[eluser]vile[/eluser]
thanks it worked!
i forgot to use javascript. im thinking too deep.


howto get iframe uri? - El Forum - 04-20-2011

[eluser]Renea077[/eluser]
Thank you very much. This seems simple enough. I have been forgetting to use javascript also. I feel pretty dumb about that. Sometimes this stuff really hurts my brain, so it's great to have such a useful resource as this forum when I need it. I have found answers to just about all of the questions that I have had, which I am really grateful for.