How Google +1 Widgets "Break Out" of their IFRAMEs
stackoverflow.com
How Google +1 Widgets "Break Out" of their IFRAMEs
1–10 of 15 posts
Re: How Google +1 Widgets "Break Out" of their IFRAMEs
#2Re: How Google +1 Widgets "Break Out" of their IFRAMEs
#3
Given this is the code you paste on the page I think it is pretty obvious to anyone who bothers to look.The CSRF information is great however!
Re: How Google +1 Widgets "Break Out" of their IFRAMEs
#4As the first SO response points out, the widget is JavaScript code that runs in the host page, so it can easily create and manipulate any kind of DOM element anywhere in that page. Of course there may be iframes among those elements, but the JS code isn't limited to that.
Re: How Google +1 Widgets "Break Out" of their IFRAMEs
#5Google +1 widgets don't "break out" of their iframes. They're not in iframes in the first place. As the first SO response points out, the widget is JavaScript code that runs in the host page, so it can easily create and manipulate any kind of DOM element anywhere in that page. Of course there may be iframes among those elements, but the JS code isn't limited to that.
But yeah, since it creates the illusion of breaking out, the submission title has the phrase in quotes.
Re: How Google +1 Widgets "Break Out" of their IFRAMEs
#6Re: How Google +1 Widgets "Break Out" of their IFRAMEs
#7Re: How Google +1 Widgets "Break Out" of their IFRAMEs
#8Google +1 widgets don't "break out" of their iframes. They're not in iframes in the first place. As the first SO response points out, the widget is JavaScript code that runs in the host page, so it can easily create and manipulate any kind of DOM element anywhere in that page. Of course there may be iframes among those elements, but the JS code isn't limited to that.
They are in s. Just not one , and the code is not originally included via . But yeah, since it creates the illusion of breaking out, the submission title has the phrase in quotes.
Once you do that you can do anything to the page, and you can also use one of several methods to have this script communicate with scripts inside the iframes that it creates.
Re: How Google +1 Widgets "Break Out" of their IFRAMEs
#9Another advantage of using an iframe (besides cross-domain communication) is that you don't have to reset every CSS style you need. When you insert JavaScript into a page it inherits all the crazy CSS already on the page which can cause all sorts of problems. Iframes have their own context and give you an easy way to avoid that problem.
Interesting tidbit: HTML5 suggests the `seamless` attribute for elements, which would cause those CSS styles to actually affect the contents of the (and some other changes, like links affecting the location of the parent window). http://www.w3.org/TR/html5/the-iframe-element.html#the-ifram...
(Of course, you meant to say “when you insert typical content DOM nodes”, not “insert Javascript”.)
Re: How Google +1 Widgets "Break Out" of their IFRAMEs
#10Another advantage of using an iframe (besides cross-domain communication) is that you don't have to reset every CSS style you need. When you insert JavaScript into a page it inherits all the crazy CSS already on the page which can cause all sorts of problems. Iframes have their own context and give you an easy way to avoid that problem.