<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments for simple</title>
	<atom:link href="http://simple.procoding.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://simple.procoding.net</link>
	<description>simple things, simple notes</description>
	<pubDate>Sun, 05 Feb 2012 11:31:57 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
		<item>
		<title>Comment on Hello World! by test</title>
		<link>http://simple.procoding.net/2007/12/17/hello-world/#comment-3703</link>
		<dc:creator>test</dc:creator>
		<pubDate>Fri, 27 Jan 2012 14:50:24 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/2007/12/17/hello-world/#comment-3703</guid>
		<description>test comment</description>
		<content:encoded><![CDATA[<p>test comment</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to access iframe in jQuery by IE issues - another user</title>
		<link>http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3700</link>
		<dc:creator>IE issues - another user</dc:creator>
		<pubDate>Thu, 19 Jan 2012 22:30:00 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3700</guid>
		<description>I'm using IE as well and the only way I could get it to work was using something similar to c.cobb's method.

This is what I'm doing:

var frameDocument = $('#frameId')[0].contentWindow.document;
$('#divId',frameDocument).text();</description>
		<content:encoded><![CDATA[<p>I&#8217;m using IE as well and the only way I could get it to work was using something similar to c.cobb&#8217;s method.</p>
<p>This is what I&#8217;m doing:</p>
<p>var frameDocument = $(&#8217;#frameId&#8217;)[0].contentWindow.document;<br />
$(&#8217;#divId&#8217;,frameDocument).text();</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to access iframe in jQuery by IE issues</title>
		<link>http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3696</link>
		<dc:creator>IE issues</dc:creator>
		<pubDate>Tue, 20 Dec 2011 20:47:44 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3696</guid>
		<description>This is awesome, but it only works in FF and Chrome.  IE ignores all elements passed.</description>
		<content:encoded><![CDATA[<p>This is awesome, but it only works in FF and Chrome.  IE ignores all elements passed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to .reset() form with jQuery by kevin</title>
		<link>http://simple.procoding.net/2008/11/22/how-to-reset-form-with-jquery/#comment-3686</link>
		<dc:creator>kevin</dc:creator>
		<pubDate>Sat, 15 Oct 2011 13:42:16 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/?p=40#comment-3686</guid>
		<description>Good article but I agree with Konstantin, you don't need to create a function just to do this. Also, you should look into custom jQuery functions rather than using vanilla javascript for this. Just a thought.</description>
		<content:encoded><![CDATA[<p>Good article but I agree with Konstantin, you don&#8217;t need to create a function just to do this. Also, you should look into custom jQuery functions rather than using vanilla javascript for this. Just a thought.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to .reset() form with jQuery by Your Marge</title>
		<link>http://simple.procoding.net/2008/11/22/how-to-reset-form-with-jquery/#comment-3683</link>
		<dc:creator>Your Marge</dc:creator>
		<pubDate>Wed, 05 Oct 2011 20:24:31 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/?p=40#comment-3683</guid>
		<description>Is not workink for me, what does it mean $(”my-reset-button”)?</description>
		<content:encoded><![CDATA[<p>Is not workink for me, what does it mean $(”my-reset-button”)?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to .reset() form with jQuery by Dave</title>
		<link>http://simple.procoding.net/2008/11/22/how-to-reset-form-with-jquery/#comment-3678</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Fri, 01 Jul 2011 23:24:53 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/?p=40#comment-3678</guid>
		<description>It wasn't working for me until i moved the reset command from after a .prepend to before it. I guess don't change any of the page content before attempting the form reset.</description>
		<content:encoded><![CDATA[<p>It wasn&#8217;t working for me until i moved the reset command from after a .prepend to before it. I guess don&#8217;t change any of the page content before attempting the form reset.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to .reset() form with jQuery by Marek</title>
		<link>http://simple.procoding.net/2008/11/22/how-to-reset-form-with-jquery/#comment-3675</link>
		<dc:creator>Marek</dc:creator>
		<pubDate>Sun, 17 Apr 2011 23:43:45 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/?p=40#comment-3675</guid>
		<description>just place somewhere in form  button will be invisible and not clicable but:
anywhere in you scrip you can use: $("my-reset-button"),click()
I'm tested it today - it works !

brgds, Marek</description>
		<content:encoded><![CDATA[<p>just place somewhere in form  button will be invisible and not clicable but:<br />
anywhere in you scrip you can use: $(&#8221;my-reset-button&#8221;),click()<br />
I&#8217;m tested it today - it works !</p>
<p>brgds, Marek</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to run Windows under VirtualBox on Fedora Core by onco</title>
		<link>http://simple.procoding.net/2009/02/26/how-to-run-windows-under-virtualbox-on-fedora-core/#comment-3674</link>
		<dc:creator>onco</dc:creator>
		<pubDate>Thu, 24 Mar 2011 03:43:30 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/?p=98#comment-3674</guid>
		<description>i can't unload the module kvm

rmmod kvm_intel
ERROR: Module kvm_intel is in use</description>
		<content:encoded><![CDATA[<p>i can&#8217;t unload the module kvm</p>
<p>rmmod kvm_intel<br />
ERROR: Module kvm_intel is in use</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to access iframe in jQuery by Targer Div</title>
		<link>http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3671</link>
		<dc:creator>Targer Div</dc:creator>
		<pubDate>Tue, 18 Jan 2011 15:21:17 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3671</guid>
		<description>Thanks Xample. That did the trick! It works!

Nyuszika7H, I could not get your methods to work. Thanks for your help.</description>
		<content:encoded><![CDATA[<p>Thanks Xample. That did the trick! It works!</p>
<p>Nyuszika7H, I could not get your methods to work. Thanks for your help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to access iframe in jQuery by Xample</title>
		<link>http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3669</link>
		<dc:creator>Xample</dc:creator>
		<pubDate>Mon, 17 Jan 2011 22:57:58 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3669</guid>
		<description>much simpler, to target your div just do:
$("div",$("iframe").contents());

Then something like this in you case: $("#ContentArea",$("#myFrame").contents()).append("Appended stuff");</description>
		<content:encoded><![CDATA[<p>much simpler, to target your div just do:<br />
$(&#8221;div&#8221;,$(&#8221;iframe&#8221;).contents());</p>
<p>Then something like this in you case: $(&#8221;#ContentArea&#8221;,$(&#8221;#myFrame&#8221;).contents()).append(&#8221;Appended stuff&#8221;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to access iframe in jQuery by Nyuszika7H</title>
		<link>http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3668</link>
		<dc:creator>Nyuszika7H</dc:creator>
		<pubDate>Fri, 14 Jan 2011 21:49:27 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3668</guid>
		<description>Update: $('#myFrame #ContentArea')

There should be a SPACE, not a &#62;. Sorry, my mistake.</description>
		<content:encoded><![CDATA[<p>Update: $(&#8217;#myFrame #ContentArea&#8217;)</p>
<p>There should be a SPACE, not a &gt;. Sorry, my mistake.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to access iframe in jQuery by Nyuszika7H</title>
		<link>http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3667</link>
		<dc:creator>Nyuszika7H</dc:creator>
		<pubDate>Fri, 14 Jan 2011 21:46:25 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3667</guid>
		<description>Method 2, use SPAN tags around Lorem Ipsum. The site stripped them out.</description>
		<content:encoded><![CDATA[<p>Method 2, use SPAN tags around Lorem Ipsum. The site stripped them out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to access iframe in jQuery by Nyuszika7H</title>
		<link>http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3666</link>
		<dc:creator>Nyuszika7H</dc:creator>
		<pubDate>Fri, 14 Jan 2011 21:44:04 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3666</guid>
		<description>@Target Div:
'Lorem Ipsum' isn't a valid jQuery selector.

Method 1:
$('#myFrame &#62; #ContentArea').before('Lorem Ipsum');

Method 2:
$('Lorem Ipsum').insertBefore('#myFrame &#62; #ContentArea');

This may also work:
$(document.createTextNode('Lorem Ipsum')).insertBefore('#myFrame &#62; #ContentArea');</description>
		<content:encoded><![CDATA[<p>@Target Div:<br />
&#8216;Lorem Ipsum&#8217; isn&#8217;t a valid jQuery selector.</p>
<p>Method 1:<br />
$(&#8217;#myFrame &gt; #ContentArea&#8217;).before(&#8217;Lorem Ipsum&#8217;);</p>
<p>Method 2:<br />
$(&#8217;Lorem Ipsum&#8217;).insertBefore(&#8217;#myFrame &gt; #ContentArea&#8217;);</p>
<p>This may also work:<br />
$(document.createTextNode(&#8217;Lorem Ipsum&#8217;)).insertBefore(&#8217;#myFrame &gt; #ContentArea&#8217;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to access iframe in jQuery by steven smith</title>
		<link>http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3665</link>
		<dc:creator>steven smith</dc:creator>
		<pubDate>Thu, 13 Jan 2011 14:17:37 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3665</guid>
		<description>Hi 

is possible to use this for Warning Navigator when user leave this site...using beforeunload method

i have test it on without iframe... it's fine working but when it come to iframe 

it wont working with warning navigator.. cos this warning site was in iframe.. so possilbe can use this code as for warning Navigator in iframe for main site 

cos i was told it's impossible do it on this</description>
		<content:encoded><![CDATA[<p>Hi </p>
<p>is possible to use this for Warning Navigator when user leave this site&#8230;using beforeunload method</p>
<p>i have test it on without iframe&#8230; it&#8217;s fine working but when it come to iframe </p>
<p>it wont working with warning navigator.. cos this warning site was in iframe.. so possilbe can use this code as for warning Navigator in iframe for main site </p>
<p>cos i was told it&#8217;s impossible do it on this</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to access iframe in jQuery by Target Div</title>
		<link>http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3664</link>
		<dc:creator>Target Div</dc:creator>
		<pubDate>Tue, 11 Jan 2011 18:13:44 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3664</guid>
		<description>How do you target a DIV ID inside of the frame?

Not working:
$("Lorem Ipsum").insertBefore('#myFrame.ContentArea');

I want to add the  to a div with an ID="ContentArea" that is inside the iFrame.</description>
		<content:encoded><![CDATA[<p>How do you target a DIV ID inside of the frame?</p>
<p>Not working:<br />
$(&#8221;Lorem Ipsum&#8221;).insertBefore(&#8217;#myFrame.ContentArea&#8217;);</p>
<p>I want to add the  to a div with an ID=&#8221;ContentArea&#8221; that is inside the iFrame.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to access iframe in jQuery by Priya</title>
		<link>http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3660</link>
		<dc:creator>Priya</dc:creator>
		<pubDate>Mon, 15 Nov 2010 22:05:39 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3660</guid>
		<description>No solution yet?</description>
		<content:encoded><![CDATA[<p>No solution yet?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to .reset() form with jQuery by CB</title>
		<link>http://simple.procoding.net/2008/11/22/how-to-reset-form-with-jquery/#comment-3659</link>
		<dc:creator>CB</dc:creator>
		<pubDate>Tue, 26 Oct 2010 15:06:08 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/?p=40#comment-3659</guid>
		<description>My shot:
        $(resetSelector).bind('click', function (event) {
            event.preventDefault();
            if(confirm("Reset form?")) {
                $(this).closest('form').get(0).reset();
            }
        });</description>
		<content:encoded><![CDATA[<p>My shot:<br />
        $(resetSelector).bind(&#8217;click&#8217;, function (event) {<br />
            event.preventDefault();<br />
            if(confirm(&#8221;Reset form?&#8221;)) {<br />
                $(this).closest(&#8217;form&#8217;).get(0).reset();<br />
            }<br />
        });</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to access iframe in jQuery by c.cobb</title>
		<link>http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3658</link>
		<dc:creator>c.cobb</dc:creator>
		<pubDate>Mon, 13 Sep 2010 22:11:18 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3658</guid>
		<description>None of these examples worked for me:

 $(’#iframe_name’).contents().find(’#id_within_iframe’).whatever();

 var iframe_ref = $(’#iframe_id’);  

 $( iframe_ref ).find('#id_within_iframe').whatever();

However, this did work perfectly:

 var iframe_ref = document.getElementById(’#iframe_name’);

 $(’#id_within_frame, frames[ iframe_ref ].document).whatever();</description>
		<content:encoded><![CDATA[<p>None of these examples worked for me:</p>
<p> $(’#iframe_name’).contents().find(’#id_within_iframe’).whatever();</p>
<p> var iframe_ref = $(’#iframe_id’);  </p>
<p> $( iframe_ref ).find(&#8217;#id_within_iframe&#8217;).whatever();</p>
<p>However, this did work perfectly:</p>
<p> var iframe_ref = document.getElementById(’#iframe_name’);</p>
<p> $(’#id_within_frame, frames[ iframe_ref ].document).whatever();</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to access iframe in jQuery by Muja</title>
		<link>http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3657</link>
		<dc:creator>Muja</dc:creator>
		<pubDate>Mon, 16 Aug 2010 10:46:03 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3657</guid>
		<description>Ty m8</description>
		<content:encoded><![CDATA[<p>Ty m8</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to .reset() form with jQuery by Axalix</title>
		<link>http://simple.procoding.net/2008/11/22/how-to-reset-form-with-jquery/#comment-3655</link>
		<dc:creator>Axalix</dc:creator>
		<pubDate>Sat, 17 Jul 2010 18:25:04 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/?p=40#comment-3655</guid>
		<description>well, it would better is everybody use all-around jQuery style, what means that correct solution is

$(’#myform’).get(0).reset();</description>
		<content:encoded><![CDATA[<p>well, it would better is everybody use all-around jQuery style, what means that correct solution is</p>
<p>$(’#myform’).get(0).reset();</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to access iframe in jQuery by RayMan</title>
		<link>http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3654</link>
		<dc:creator>RayMan</dc:creator>
		<pubDate>Mon, 12 Jul 2010 09:43:58 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3654</guid>
		<description>not working in external sever.</description>
		<content:encoded><![CDATA[<p>not working in external sever.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to access iframe in jQuery by TigerLily</title>
		<link>http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3651</link>
		<dc:creator>TigerLily</dc:creator>
		<pubDate>Mon, 28 Jun 2010 21:37:20 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3651</guid>
		<description>Thanks for posting this. It was of great help to me.</description>
		<content:encoded><![CDATA[<p>Thanks for posting this. It was of great help to me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to access iframe in jQuery by Rady RIn</title>
		<link>http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3650</link>
		<dc:creator>Rady RIn</dc:creator>
		<pubDate>Thu, 03 Jun 2010 06:36:42 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3650</guid>
		<description>I follow all of you not works!

How can I do?
Can anyone help me please?</description>
		<content:encoded><![CDATA[<p>I follow all of you not works!</p>
<p>How can I do?<br />
Can anyone help me please?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Internet Explorer limits number of external CSS files to 32 by Maximilian Franzke</title>
		<link>http://simple.procoding.net/2009/02/20/internet-explorer-limits-number-of-external-css-files-to-32/#comment-3648</link>
		<dc:creator>Maximilian Franzke</dc:creator>
		<pubDate>Fri, 09 Apr 2010 06:51:37 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/?p=93#comment-3648</guid>
		<description>More information on this:
http://www.thecssdiv.co.uk/2008/09/29/new-css-for-ie6-kinda/</description>
		<content:encoded><![CDATA[<p>More information on this:<br />
<a href="http://www.thecssdiv.co.uk/2008/09/29/new-css-for-ie6-kinda/" rel="nofollow">http://www.thecssdiv.co.uk/2008/09/29/new-css-for-ie6-kinda/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to access iframe in jQuery by Vio</title>
		<link>http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3644</link>
		<dc:creator>Vio</dc:creator>
		<pubDate>Mon, 08 Mar 2010 12:55:23 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3644</guid>
		<description>This is all fine, but what happens if you want to get content that is sitting between two comment tags? 

Example:


&lt;!-- Content Begin --&gt;

&lt;!-- Content End --&gt;
</description>
		<content:encoded><![CDATA[<p>This is all fine, but what happens if you want to get content that is sitting between two comment tags? </p>
<p>Example:</p>
<p><!-- Content Begin --></p>
<p><!-- Content End --></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to .reset() form with jQuery by ดูหนัง</title>
		<link>http://simple.procoding.net/2008/11/22/how-to-reset-form-with-jquery/#comment-3643</link>
		<dc:creator>ดูหนัง</dc:creator>
		<pubDate>Mon, 08 Mar 2010 07:51:09 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/?p=40#comment-3643</guid>
		<description>Thanks a lot for a good idea.</description>
		<content:encoded><![CDATA[<p>Thanks a lot for a good idea.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to run Windows under VirtualBox on Fedora Core by Carra</title>
		<link>http://simple.procoding.net/2009/02/26/how-to-run-windows-under-virtualbox-on-fedora-core/#comment-3640</link>
		<dc:creator>Carra</dc:creator>
		<pubDate>Tue, 16 Feb 2010 04:16:45 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/?p=98#comment-3640</guid>
		<description>Hi -- works for Fedora 12 x64 as well.  Warning message: nokvm needs to be renamed nokvm.conf or it will (someday) be ignored.

I'm running F12x64 on a quad-proc system (smb/rsync/www), and installing WXPx32 under PuTTY/Xming.  Tried KVM, expect it'll get better in the future (esp. as a fallback from VB if Sun AKA Oracle "Sundowns" it. ;-) )

There's now a VB yum repo: http://download.virtualbox.org/virtualbox/rpm/fedora/virtualbox.repo, see http://www.virtualbox.org/wiki/Linux_Downloads bottom of page

Also, typo on next to last line -- "mashine".  Perfect description, I wish other authors would be as accurate and NON-verbose.  Thanks!</description>
		<content:encoded><![CDATA[<p>Hi &#8212; works for Fedora 12 x64 as well.  Warning message: nokvm needs to be renamed nokvm.conf or it will (someday) be ignored.</p>
<p>I&#8217;m running F12&#215;64 on a quad-proc system (smb/rsync/www), and installing WXPx32 under PuTTY/Xming.  Tried KVM, expect it&#8217;ll get better in the future (esp. as a fallback from VB if Sun AKA Oracle &#8220;Sundowns&#8221; it. <img src='http://simple.procoding.net/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> )</p>
<p>There&#8217;s now a VB yum repo: <a href="http://download.virtualbox.org/virtualbox/rpm/fedora/virtualbox.repo" rel="nofollow">http://download.virtualbox.org/virtualbox/rpm/fedora/virtualbox.repo</a>, see <a href="http://www.virtualbox.org/wiki/Linux_Downloads" rel="nofollow">http://www.virtualbox.org/wiki/Linux_Downloads</a> bottom of page</p>
<p>Also, typo on next to last line &#8212; &#8220;mashine&#8221;.  Perfect description, I wish other authors would be as accurate and NON-verbose.  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to access iframe in jQuery by psy</title>
		<link>http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3639</link>
		<dc:creator>psy</dc:creator>
		<pubDate>Tue, 09 Feb 2010 07:52:01 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3639</guid>
		<description>This work for me.
$('#iframe-name').contents().find('#frame-do-you-want-get')

Example:
$('#TB_iframeContent').contents().find('#wrapper').css('display','block');

Thanks bro.</description>
		<content:encoded><![CDATA[<p>This work for me.<br />
$(&#8217;#iframe-name&#8217;).contents().find(&#8217;#frame-do-you-want-get&#8217;)</p>
<p>Example:<br />
$(&#8217;#TB_iframeContent&#8217;).contents().find(&#8217;#wrapper&#8217;).css(&#8217;display&#8217;,'block&#8217;);</p>
<p>Thanks bro.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to .reset() form with jQuery by deny</title>
		<link>http://simple.procoding.net/2008/11/22/how-to-reset-form-with-jquery/#comment-3638</link>
		<dc:creator>deny</dc:creator>
		<pubDate>Thu, 28 Jan 2010 21:09:29 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/?p=40#comment-3638</guid>
		<description>it work =&#62; $('#myform')[0].reset()
Thanks for the idea</description>
		<content:encoded><![CDATA[<p>it work =&gt; $(&#8217;#myform&#8217;)[0].reset()<br />
Thanks for the idea</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to access iframe in jQuery by apps</title>
		<link>http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3636</link>
		<dc:creator>apps</dc:creator>
		<pubDate>Tue, 19 Jan 2010 19:27:38 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3636</guid>
		<description>hello all 
what to do if the domain is different ?

i want a jquery which will hide some of the div from the the website in the iframe from the different domain.</description>
		<content:encoded><![CDATA[<p>hello all<br />
what to do if the domain is different ?</p>
<p>i want a jquery which will hide some of the div from the the website in the iframe from the different domain.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to access iframe in jQuery by videolar</title>
		<link>http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3635</link>
		<dc:creator>videolar</dc:creator>
		<pubDate>Tue, 19 Jan 2010 12:02:21 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3635</guid>
		<description>thanx a lot bro, i found this ..</description>
		<content:encoded><![CDATA[<p>thanx a lot bro, i found this ..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to .reset() form with jQuery by Bruno Soares</title>
		<link>http://simple.procoding.net/2008/11/22/how-to-reset-form-with-jquery/#comment-3634</link>
		<dc:creator>Bruno Soares</dc:creator>
		<pubDate>Tue, 12 Jan 2010 18:42:34 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/?p=40#comment-3634</guid>
		<description>only this:

$(’form’)[0].reset();

get the form element.... and not the specific form directly: ('#myform')</description>
		<content:encoded><![CDATA[<p>only this:</p>
<p>$(’form’)[0].reset();</p>
<p>get the form element&#8230;. and not the specific form directly: (&#8217;#myform&#8217;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to access iframe in jQuery by Karl Stanton</title>
		<link>http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3633</link>
		<dc:creator>Karl Stanton</dc:creator>
		<pubDate>Fri, 08 Jan 2010 17:09:48 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3633</guid>
		<description>I found this very helpful, thank you!!</description>
		<content:encoded><![CDATA[<p>I found this very helpful, thank you!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to run Windows under VirtualBox on Fedora Core by Jason</title>
		<link>http://simple.procoding.net/2009/02/26/how-to-run-windows-under-virtualbox-on-fedora-core/#comment-3631</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Fri, 25 Dec 2009 22:57:39 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/?p=98#comment-3631</guid>
		<description>Thanks for the tip.

It works fine for me on Fedora 12.</description>
		<content:encoded><![CDATA[<p>Thanks for the tip.</p>
<p>It works fine for me on Fedora 12.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to access iframe in jQuery by vectorvend</title>
		<link>http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3630</link>
		<dc:creator>vectorvend</dc:creator>
		<pubDate>Tue, 22 Dec 2009 12:02:10 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3630</guid>
		<description>@Taras, @cbsides Thank you very much got it working</description>
		<content:encoded><![CDATA[<p>@Taras, @cbsides Thank you very much got it working</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to access iframe in jQuery by Steve</title>
		<link>http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3629</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Mon, 21 Dec 2009 09:35:45 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3629</guid>
		<description>This was a very big help.
i spent hours trying to maniuplate the iframe.
thanks a lot</description>
		<content:encoded><![CDATA[<p>This was a very big help.<br />
i spent hours trying to maniuplate the iframe.<br />
thanks a lot</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to access iframe in jQuery by cbsides</title>
		<link>http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3628</link>
		<dc:creator>cbsides</dc:creator>
		<pubDate>Wed, 16 Dec 2009 21:36:50 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3628</guid>
		<description>If anyone is still having trouble with selecting iframe contents w/jQuery I've verified this as working (keep in mind the iframe must be in the same domain as the accessing page, as mentioned above):



var myFrame = $('#myFrameId');
myFrame.load(function() {	// wait for iframe to load
	myFrame.contents().find('#myElementInFrame').html('hello world!');
});</description>
		<content:encoded><![CDATA[<p>If anyone is still having trouble with selecting iframe contents w/jQuery I&#8217;ve verified this as working (keep in mind the iframe must be in the same domain as the accessing page, as mentioned above):</p>
<p>var myFrame = $(&#8217;#myFrameId&#8217;);<br />
myFrame.load(function() {	// wait for iframe to load<br />
	myFrame.contents().find(&#8217;#myElementInFrame&#8217;).html(&#8217;hello world!&#8217;);<br />
});</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on OS X: how to upgrade to Snow Leopard from local drive by Taras</title>
		<link>http://simple.procoding.net/2009/11/04/os-x-how-to-upgrade-to-snow-leopard-from-local-drive/#comment-3627</link>
		<dc:creator>Taras</dc:creator>
		<pubDate>Fri, 11 Dec 2009 11:18:43 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/?p=134#comment-3627</guid>
		<description>Kevin,

You may try this:
Open Disk Utility tool and click the hard disk item in the left hand partitions list (in my case it's 149.1 GB FUTJITSU... - see image attached to the step N4), then click the Partition tab (top center). Select the SnowLeopard partition and click "-" (remove partition) and Apply. This should completely remove your SnowLeopard partition.

After this you can either resize your Macintosh HD partition and start over with the BootCamp or manually create Windows partitions in Disk Utility.</description>
		<content:encoded><![CDATA[<p>Kevin,</p>
<p>You may try this:<br />
Open Disk Utility tool and click the hard disk item in the left hand partitions list (in my case it&#8217;s 149.1 GB FUTJITSU&#8230; - see image attached to the step N4), then click the Partition tab (top center). Select the SnowLeopard partition and click &#8220;-&#8221; (remove partition) and Apply. This should completely remove your SnowLeopard partition.</p>
<p>After this you can either resize your Macintosh HD partition and start over with the BootCamp or manually create Windows partitions in Disk Utility.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on OS X: how to upgrade to Snow Leopard from local drive by Kevin</title>
		<link>http://simple.procoding.net/2009/11/04/os-x-how-to-upgrade-to-snow-leopard-from-local-drive/#comment-3626</link>
		<dc:creator>Kevin</dc:creator>
		<pubDate>Wed, 09 Dec 2009 09:56:12 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/?p=134#comment-3626</guid>
		<description>Did not have any DL DVD's around, and external was completely full, thanks.
I am still trying to figure out how to get rid of the "SnowLeopard" partition though. I want to create another partition for Windows. How did you go about this process? I have tried Boot Camp Assistant, got an error that read "the start up disk cannot be partitioned or restored to a single partition. The startup disk must be formatted as a single Mac OS Extended (Journaled) volume or already partitioned by Boot Camp Assistant for installing Windows."  What am I doing wrong?</description>
		<content:encoded><![CDATA[<p>Did not have any DL DVD&#8217;s around, and external was completely full, thanks.<br />
I am still trying to figure out how to get rid of the &#8220;SnowLeopard&#8221; partition though. I want to create another partition for Windows. How did you go about this process? I have tried Boot Camp Assistant, got an error that read &#8220;the start up disk cannot be partitioned or restored to a single partition. The startup disk must be formatted as a single Mac OS Extended (Journaled) volume or already partitioned by Boot Camp Assistant for installing Windows.&#8221;  What am I doing wrong?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to .reset() form with jQuery by DownsTream</title>
		<link>http://simple.procoding.net/2008/11/22/how-to-reset-form-with-jquery/#comment-3625</link>
		<dc:creator>DownsTream</dc:creator>
		<pubDate>Sat, 05 Dec 2009 10:04:11 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/?p=40#comment-3625</guid>
		<description>Thanks...

easy solution but it work!!!</description>
		<content:encoded><![CDATA[<p>Thanks&#8230;</p>
<p>easy solution but it work!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to access iframe in jQuery by izdelava spletne strani</title>
		<link>http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3624</link>
		<dc:creator>izdelava spletne strani</dc:creator>
		<pubDate>Fri, 04 Dec 2009 17:12:04 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3624</guid>
		<description>These iframes are getting on my nerves. I can't get it right ...</description>
		<content:encoded><![CDATA[<p>These iframes are getting on my nerves. I can&#8217;t get it right &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to .reset() form with jQuery by prabhakaran</title>
		<link>http://simple.procoding.net/2008/11/22/how-to-reset-form-with-jquery/#comment-3595</link>
		<dc:creator>prabhakaran</dc:creator>
		<pubDate>Mon, 23 Nov 2009 19:28:35 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/?p=40#comment-3595</guid>
		<description>add this at the end of the form
&#60;div style="display='none'" &#62;&#60;input type="reset" id="rst_form"&#62;&#60;/div&#62;

and try this,
$('#rst_form').click()</description>
		<content:encoded><![CDATA[<p>add this at the end of the form<br />
&lt;div style=&#8221;display=&#8217;none&#8217;&#8221; &gt;&lt;input type=&#8221;reset&#8221; id=&#8221;rst_form&#8221;&gt;&lt;/div&gt;</p>
<p>and try this,<br />
$(&#8217;#rst_form&#8217;).click()</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to .reset() form with jQuery by prabhakaran</title>
		<link>http://simple.procoding.net/2008/11/22/how-to-reset-form-with-jquery/#comment-3594</link>
		<dc:creator>prabhakaran</dc:creator>
		<pubDate>Mon, 23 Nov 2009 19:27:17 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/?p=40#comment-3594</guid>
		<description>add this at the end of the form


and try this,
$('#rst_form').click()</description>
		<content:encoded><![CDATA[<p>add this at the end of the form</p>
<p>and try this,<br />
$(&#8217;#rst_form&#8217;).click()</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to .reset() form with jQuery by Lover of Sadness</title>
		<link>http://simple.procoding.net/2008/11/22/how-to-reset-form-with-jquery/#comment-3534</link>
		<dc:creator>Lover of Sadness</dc:creator>
		<pubDate>Tue, 17 Nov 2009 18:41:28 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/?p=40#comment-3534</guid>
		<description>this doesnt work..
someone please help...</description>
		<content:encoded><![CDATA[<p>this doesnt work..<br />
someone please help&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to access iframe in jQuery by Shubhajeet Sinha</title>
		<link>http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3485</link>
		<dc:creator>Shubhajeet Sinha</dc:creator>
		<pubDate>Fri, 23 Oct 2009 14:07:55 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3485</guid>
		<description>This is not working for me. Please help me for this. I am posting the jquery code here

the id of iframe is #depGridFrame

$('#depGridFrame').ready(function()
   {
	   alert($(this).contents().find('#updtGrid').tagName);
	});

i am calling it from document.ready function of parent document.</description>
		<content:encoded><![CDATA[<p>This is not working for me. Please help me for this. I am posting the jquery code here</p>
<p>the id of iframe is #depGridFrame</p>
<p>$(&#8217;#depGridFrame&#8217;).ready(function()<br />
   {<br />
	   alert($(this).contents().find(&#8217;#updtGrid&#8217;).tagName);<br />
	});</p>
<p>i am calling it from document.ready function of parent document.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to access iframe in jQuery by Ricardo</title>
		<link>http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3484</link>
		<dc:creator>Ricardo</dc:creator>
		<pubDate>Fri, 16 Oct 2009 11:41:55 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3484</guid>
		<description>Thaks! thats help me and work for me.</description>
		<content:encoded><![CDATA[<p>Thaks! thats help me and work for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to run Windows under VirtualBox on Fedora Core by gregor</title>
		<link>http://simple.procoding.net/2009/02/26/how-to-run-windows-under-virtualbox-on-fedora-core/#comment-3483</link>
		<dc:creator>gregor</dc:creator>
		<pubDate>Sun, 11 Oct 2009 11:36:51 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/?p=98#comment-3483</guid>
		<description>hi,

thank for that hint it works perfect.
is used it with following releases:
Fedora 11: Linux  2.6.30.8-64.fc11.x86_64 #1 SMP Fri Sep 25 04:43:32 EDT 2009 x86_64 x86_64 x86_64 GNU/Linux
VirtualBox: VirtualBox-3.0.4_50677_fedora11-1.x86_64

greetings from austria
gregor</description>
		<content:encoded><![CDATA[<p>hi,</p>
<p>thank for that hint it works perfect.<br />
is used it with following releases:<br />
Fedora 11: Linux  2.6.30.8-64.fc11.x86_64 #1 SMP Fri Sep 25 04:43:32 EDT 2009 x86_64 x86_64 x86_64 GNU/Linux<br />
VirtualBox: VirtualBox-3.0.4_50677_fedora11-1.x86_64</p>
<p>greetings from austria<br />
gregor</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to access iframe in jQuery by steve</title>
		<link>http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3482</link>
		<dc:creator>steve</dc:creator>
		<pubDate>Wed, 30 Sep 2009 12:37:36 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3482</guid>
		<description>I have done so much in Jquery and have learned most tricks of the trade but this is probably the best thing I have ever come across. I am so excited about the endless posibilitys that this will bring. Thanks sooooooooo much for sharing!</description>
		<content:encoded><![CDATA[<p>I have done so much in Jquery and have learned most tricks of the trade but this is probably the best thing I have ever come across. I am so excited about the endless posibilitys that this will bring. Thanks sooooooooo much for sharing!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to .reset() form with jQuery by Raymond</title>
		<link>http://simple.procoding.net/2008/11/22/how-to-reset-form-with-jquery/#comment-3479</link>
		<dc:creator>Raymond</dc:creator>
		<pubDate>Mon, 14 Sep 2009 06:48:12 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/?p=40#comment-3479</guid>
		<description>"$(’#myFormId’)[0].reset();"

Thanks Konstantin, easy solution</description>
		<content:encoded><![CDATA[<p>&#8220;$(’#myFormId’)[0].reset();&#8221;</p>
<p>Thanks Konstantin, easy solution</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to access iframe in jQuery by sophisticado</title>
		<link>http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3476</link>
		<dc:creator>sophisticado</dc:creator>
		<pubDate>Tue, 01 Sep 2009 21:57:40 +0000</pubDate>
		<guid isPermaLink="false">http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/#comment-3476</guid>
		<description>Good stuff here.  My question is how can a script embedded in the document within the iframe close the entire jquery dialog which was called from the parent?</description>
		<content:encoded><![CDATA[<p>Good stuff here.  My question is how can a script embedded in the document within the iframe close the entire jquery dialog which was called from the parent?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

