Hello everyone, I need a little help...
Iframe is generated on my page by a script like this...
How can I get the URL/SRC of the generated iframe?Code:<script src="http://example.com/make_iframe"></script>
Hello everyone, I need a little help...
Iframe is generated on my page by a script like this...
How can I get the URL/SRC of the generated iframe?Code:<script src="http://example.com/make_iframe"></script>
Code:<script type="text/javascript"> var src=document.getElementById("iframeID").src; </script>
[Jasme Library (Javascript Motion Effects)] My Site
/\/\@§†ê® §©®¡þ† /\/\@|{ê®
There are 10 kinds of people in the world, those that understand binary and those that don't.
We'd need to see the script. To get the urls of all the iframes on the page you could do something like this:
Code:var iframes = document.getElementsByTagName("iframe"); for(var i = 0; i < iframes.length; i++) { alert(iframes[i].src); }
Bookmarks