<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Facebox Extended.</title>
	<atom:link href="http://www.rajavarma.com/2009/02/22/facebox-extended/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rajavarma.com/2009/02/22/facebox-extended/</link>
	<description>PHP, MySQL, Linux practical usage.</description>
	<lastBuildDate>Wed, 11 Aug 2010 11:03:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.3</generator>
	<item>
		<title>By: Raja</title>
		<link>http://www.rajavarma.com/2009/02/22/facebox-extended/comment-page-1/#comment-89</link>
		<dc:creator>Raja</dc:creator>
		<pubDate>Thu, 24 Jun 2010 07:09:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.rajavarma.com/?p=60#comment-89</guid>
		<description>sorry, not at the moment. 
May be by this weekend would put it on github. </description>
		<content:encoded><![CDATA[<p>sorry, not at the moment.<br />
May be by this weekend would put it on github.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: j.o.</title>
		<link>http://www.rajavarma.com/2009/02/22/facebox-extended/comment-page-1/#comment-88</link>
		<dc:creator>j.o.</dc:creator>
		<pubDate>Wed, 23 Jun 2010 16:46:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.rajavarma.com/?p=60#comment-88</guid>
		<description>is this up anywhere for people to fork and hack away at?  github perhaps? </description>
		<content:encoded><![CDATA[<p>is this up anywhere for people to fork and hack away at?  github perhaps?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raja</title>
		<link>http://www.rajavarma.com/2009/02/22/facebox-extended/comment-page-1/#comment-65</link>
		<dc:creator>Raja</dc:creator>
		<pubDate>Fri, 30 Oct 2009 18:44:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.rajavarma.com/?p=60#comment-65</guid>
		<description>Sorry for the late reply :). 
 
submit the form thru AJAX call, and use $.facebox.content(&lt;AJAX_RESPONSE&gt;); to update the facebox window, Also after the onSubmit call do a &#039;return false&#039; to block  the default form submit from taking place </description>
		<content:encoded><![CDATA[<p>Sorry for the late reply <img src='http://www.rajavarma.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . </p>
<p>submit the form thru AJAX call, and use $.facebox.content(&lt;AJAX_RESPONSE&gt;); to update the facebox window, Also after the onSubmit call do a &#039;return false&#039; to block  the default form submit from taking place</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Edison Wong</title>
		<link>http://www.rajavarma.com/2009/02/22/facebox-extended/comment-page-1/#comment-63</link>
		<dc:creator>Edison Wong</dc:creator>
		<pubDate>Mon, 12 Oct 2009 08:44:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.rajavarma.com/?p=60#comment-63</guid>
		<description>I Need Help here. How can I make submit a form from my Facebox window? Everytime I click the button, the response will not be shown on facebox anymore. Can&#039;t get it to work using jquery.form for cross browser as well. Need a clearer picture of how this can be done. </description>
		<content:encoded><![CDATA[<p>I Need Help here. How can I make submit a form from my Facebox window? Everytime I click the button, the response will not be shown on facebox anymore. Can&#039;t get it to work using jquery.form for cross browser as well. Need a clearer picture of how this can be done.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: miCRoSCoPiCeaRthLinG</title>
		<link>http://www.rajavarma.com/2009/02/22/facebox-extended/comment-page-1/#comment-50</link>
		<dc:creator>miCRoSCoPiCeaRthLinG</dc:creator>
		<pubDate>Sat, 25 Jul 2009 06:49:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.rajavarma.com/?p=60#comment-50</guid>
		<description>Hey there... for some reason fb extended is ignoring my options... I tried something like 
&lt;code&gt; 
$.facebox({ 
modal: true, 
opacity: 60, 
overlay: false 
}); 
&lt;/code&gt; 
 
Also... how do I programmatically provide the contents alongwith this bit of code? 
 
I tried... 
&lt;code&gt; 
$.facebox({ 
modal: true, 
opacity: 60, 
overlay: false, 
content: &#039;Please wait...&#039; 
}); 
&lt;/code&gt; 
 
and... 
 
&lt;code&gt; 
$.facebox({ 
modal: true, 
opacity: 60, 
overlay: false, 
 
}).content( &#039;Please wait...&#039; ); 
&lt;/code&gt; 
 
Didn&#039;t work out for me....! Any help much appreciated. 
 
Thanks, 
m^e </description>
		<content:encoded><![CDATA[<p>Hey there&#8230; for some reason fb extended is ignoring my options&#8230; I tried something like<br />
&lt;code&gt;<br />
$.facebox({<br />
modal: true,<br />
opacity: 60,<br />
overlay: false<br />
});<br />
&lt;/code&gt; </p>
<p>Also&#8230; how do I programmatically provide the contents alongwith this bit of code? </p>
<p>I tried&#8230;<br />
&lt;code&gt;<br />
$.facebox({<br />
modal: true,<br />
opacity: 60,<br />
overlay: false,<br />
content: &#039;Please wait&#8230;&#039;<br />
});<br />
&lt;/code&gt; </p>
<p>and&#8230; </p>
<p>&lt;code&gt;<br />
$.facebox({<br />
modal: true,<br />
opacity: 60,<br />
overlay: false, </p>
<p>}).content( &#039;Please wait&#8230;&#039; );<br />
&lt;/code&gt; </p>
<p>Didn&#039;t work out for me&#8230;.! Any help much appreciated. </p>
<p>Thanks,<br />
m^e</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://www.rajavarma.com/2009/02/22/facebox-extended/comment-page-1/#comment-41</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Thu, 16 Jul 2009 09:09:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.rajavarma.com/?p=60#comment-41</guid>
		<description>Help needed. 
I get it to show the results box. 
However I can&#039;t use my keyboard in the box nor can I click the results to make em pop in the input box. 
any ideas? </description>
		<content:encoded><![CDATA[<p>Help needed.<br />
I get it to show the results box.<br />
However I can&#039;t use my keyboard in the box nor can I click the results to make em pop in the input box.<br />
any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: guest</title>
		<link>http://www.rajavarma.com/2009/02/22/facebox-extended/comment-page-1/#comment-40</link>
		<dc:creator>guest</dc:creator>
		<pubDate>Wed, 15 Jul 2009 13:38:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.rajavarma.com/?p=60#comment-40</guid>
		<description>I&#039;m using it, thank you! </description>
		<content:encoded><![CDATA[<p>I&#039;m using it, thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: icerelic@twitter</title>
		<link>http://www.rajavarma.com/2009/02/22/facebox-extended/comment-page-1/#comment-7</link>
		<dc:creator>icerelic@twitter</dc:creator>
		<pubDate>Sun, 08 Mar 2009 08:01:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.rajavarma.com/?p=60#comment-7</guid>
		<description>What I&#039;ve been looking for. 
Quite helpful! </description>
		<content:encoded><![CDATA[<p>What I&#039;ve been looking for.<br />
Quite helpful!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

