<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.2" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: New jQuery Plugin - $.frameReady()</title>
	<link>http://ideamill.synaptrixgroup.com/?p=6</link>
	<description>Dreaming it up is half the fun...</description>
	<pubDate>Mon, 06 Sep 2010 11:02:41 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2</generator>

	<item>
		<title>By: ChrisR</title>
		<link>http://ideamill.synaptrixgroup.com/?p=6#comment-22172</link>
		<author>ChrisR</author>
		<pubDate>Tue, 10 Aug 2010 16:40:10 +0000</pubDate>
		<guid>http://ideamill.synaptrixgroup.com/?p=6#comment-22172</guid>
		<description>I ran into an issue of cross subdomain permission errors.  The solution was as simple as putting the following lines in both my iframe and my parent contanier.

document.domain = "domain.com";</description>
		<content:encoded><![CDATA[<p>I ran into an issue of cross subdomain permission errors.  The solution was as simple as putting the following lines in both my iframe and my parent contanier.</p>
<p>document.domain = &#8220;domain.com&#8221;;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Pincas</title>
		<link>http://ideamill.synaptrixgroup.com/?p=6#comment-64</link>
		<author>Daniel Pincas</author>
		<pubDate>Thu, 14 Jun 2007 15:14:39 +0000</pubDate>
		<guid>http://ideamill.synaptrixgroup.com/?p=6#comment-64</guid>
		<description>Hey there,

This is a great looking plugin.  I'm trying to get it to work, but I'm having some problems with the target String (I think).

My code is:

$(document).ready(function() {
    	    $.frameReady(function() {
    	        $("Hello!)").prependTo("body");},
    	        "top.ifrm"
    	    );
    	});

The iframe is:



When I load the page, nothing happens.  I'm not getting any JavaScript errors, though, so I'm clueless.  I'm thinking that I'm not giving it the target properly, but I don't know how to find the window object reference of the iframe.  Does it always begin with "top" ?

Any help is appreciated,

Dan</description>
		<content:encoded><![CDATA[<p>Hey there,</p>
<p>This is a great looking plugin.  I&#8217;m trying to get it to work, but I&#8217;m having some problems with the target String (I think).</p>
<p>My code is:</p>
<p>$(document).ready(function() {<br />
    	    $.frameReady(function() {<br />
    	        $(&#8221;Hello!)&#8221;).prependTo(&#8221;body&#8221;);},<br />
    	        &#8220;top.ifrm&#8221;<br />
    	    );<br />
    	});</p>
<p>The iframe is:</p>
<p>When I load the page, nothing happens.  I&#8217;m not getting any JavaScript errors, though, so I&#8217;m clueless.  I&#8217;m thinking that I&#8217;m not giving it the target properly, but I don&#8217;t know how to find the window object reference of the iframe.  Does it always begin with &#8220;top&#8221; ?</p>
<p>Any help is appreciated,</p>
<p>Dan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: oscar</title>
		<link>http://ideamill.synaptrixgroup.com/?p=6#comment-50</link>
		<author>oscar</author>
		<pubDate>Thu, 31 May 2007 10:42:54 +0000</pubDate>
		<guid>http://ideamill.synaptrixgroup.com/?p=6#comment-50</guid>
		<description>Are there any way to pass a param (I need to pass a DIv object) from parent to the iframe child?

My code:
(iwould like to use newContent info)

 var  newContent = jQuery("#containerDiv")[0].innerHTML
	jQuery.frameReady(
		function()
		{
		  debugger;
		   jQuery("#containerContent")[0].innerHTML = newContent;
		},
		"top.printContentIframe"
	);</description>
		<content:encoded><![CDATA[<p>Are there any way to pass a param (I need to pass a DIv object) from parent to the iframe child?</p>
<p>My code:<br />
(iwould like to use newContent info)</p>
<p> var  newContent = jQuery(&#8221;#containerDiv&#8221;)[0].innerHTML<br />
	jQuery.frameReady(<br />
		function()<br />
		{<br />
		  debugger;<br />
		   jQuery(&#8221;#containerContent&#8221;)[0].innerHTML = newContent;<br />
		},<br />
		&#8220;top.printContentIframe&#8221;<br />
	);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: daemach</title>
		<link>http://ideamill.synaptrixgroup.com/?p=6#comment-35</link>
		<author>daemach</author>
		<pubDate>Wed, 23 May 2007 17:44:38 +0000</pubDate>
		<guid>http://ideamill.synaptrixgroup.com/?p=6#comment-35</guid>
		<description>frameReady's main purpose is purely to make dealing with frames as easy as it would be  if they were local.  You can easily load something in a container document from an iframe, dynamic or not - look at the code in my demos for an example.  The scrolling problem is something you're going to have to deal with separately - perhaps using CSS.

If you can provide a demo page that I can look at I might be able to give better advice.</description>
		<content:encoded><![CDATA[<p>frameReady&#8217;s main purpose is purely to make dealing with frames as easy as it would be  if they were local.  You can easily load something in a container document from an iframe, dynamic or not - look at the code in my demos for an example.  The scrolling problem is something you&#8217;re going to have to deal with separately - perhaps using CSS.</p>
<p>If you can provide a demo page that I can look at I might be able to give better advice.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin Armstrong</title>
		<link>http://ideamill.synaptrixgroup.com/?p=6#comment-34</link>
		<author>Kevin Armstrong</author>
		<pubDate>Tue, 22 May 2007 14:30:37 +0000</pubDate>
		<guid>http://ideamill.synaptrixgroup.com/?p=6#comment-34</guid>
		<description>I am trying to load a dialog (i.e. Date Selector) outside of an iframe in a container document. Usually my iframes are only small enough to display tabular. When the dialog opens it forces unwanted scrolling. The iframes and content are all dynamic. Can $.frameReady help with this situation?</description>
		<content:encoded><![CDATA[<p>I am trying to load a dialog (i.e. Date Selector) outside of an iframe in a container document. Usually my iframes are only small enough to display tabular. When the dialog opens it forces unwanted scrolling. The iframes and content are all dynamic. Can $.frameReady help with this situation?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: daemach</title>
		<link>http://ideamill.synaptrixgroup.com/?p=6#comment-23</link>
		<author>daemach</author>
		<pubDate>Fri, 18 May 2007 14:54:39 +0000</pubDate>
		<guid>http://ideamill.synaptrixgroup.com/?p=6#comment-23</guid>
		<description>It should be re-running the functions every time the frame reloads - are you seeing something different?</description>
		<content:encoded><![CDATA[<p>It should be re-running the functions every time the frame reloads - are you seeing something different?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Bakaus</title>
		<link>http://ideamill.synaptrixgroup.com/?p=6#comment-22</link>
		<author>Paul Bakaus</author>
		<pubDate>Fri, 18 May 2007 09:02:51 +0000</pubDate>
		<guid>http://ideamill.synaptrixgroup.com/?p=6#comment-22</guid>
		<description>Hey there,

nice plugin, and the demo now works in IE, too ;-)
A question I have:

I'm reloading on iframe again and again, and I need to fire the event on each reload. Is this possible to do?</description>
		<content:encoded><![CDATA[<p>Hey there,</p>
<p>nice plugin, and the demo now works in IE, too <img src='http://ideamill.synaptrixgroup.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /><br />
A question I have:</p>
<p>I&#8217;m reloading on iframe again and again, and I need to fire the event on each reload. Is this possible to do?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: daemach</title>
		<link>http://ideamill.synaptrixgroup.com/?p=6#comment-14</link>
		<author>daemach</author>
		<pubDate>Sun, 13 May 2007 17:34:35 +0000</pubDate>
		<guid>http://ideamill.synaptrixgroup.com/?p=6#comment-14</guid>
		<description>No, it shouldn't matter.  Can you email me a code sample or send me a link at daemach at gmail dot com?</description>
		<content:encoded><![CDATA[<p>No, it shouldn&#8217;t matter.  Can you email me a code sample or send me a link at daemach at gmail dot com?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MP:Schorsch</title>
		<link>http://ideamill.synaptrixgroup.com/?p=6#comment-13</link>
		<author>MP:Schorsch</author>
		<pubDate>Sun, 13 May 2007 12:40:17 +0000</pubDate>
		<guid>http://ideamill.synaptrixgroup.com/?p=6#comment-13</guid>
		<description>i´m including a google calendar inside an iframe, but when i try to access it i get a permission denied? is this restricted to local iframes?</description>
		<content:encoded><![CDATA[<p>i´m including a google calendar inside an iframe, but when i try to access it i get a permission denied? is this restricted to local iframes?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
