<?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 for FullFatCode</title>
	<atom:link href="http://www.fullfatcode.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fullfatcode.com</link>
	<description>The code blog of web developer James Carmichael</description>
	<lastBuildDate>Mon, 29 Aug 2011 19:15:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
	<item>
		<title>Comment on JQuery AJAX Uploader Plugin by Charles</title>
		<link>http://www.fullfatcode.com/2009/06/06/jquery-ajax-uploader-plugin/comment-page-1/#comment-5462</link>
		<dc:creator>Charles</dc:creator>
		<pubDate>Mon, 29 Aug 2011 19:15:29 +0000</pubDate>
		<guid isPermaLink="false">http://fullfatcode.wordpress.com/?p=17#comment-5462</guid>
		<description>Greetings,

Thanks for posting this; I was looking for a simple ajax-y uploader to handle some image uploads without page refreshes and yours looks good and doesn&#039;t depend on flash like most other similar scripts appear to.  

I am however having a problem with it -- I see the onStart and loading callbacks trigger, but the upload form does not appear to submit, and the onComplete callback is never called.

My upload form is created in a table cell on demand, and then I call .ajaxUpload() on it like this:
&lt;code&gt;
[...]
var $dataid = ...
var $formid = ...
var $this_form = ...
td.html($this_form);
$(&#039;#&#039; + $formid).ajaxUpload({
    onStart: function() {
        console.log(&quot;Upload for dataid &quot; + $dataid + &quot; starting!&quot;);
        td.html(&quot;Loading anim maybe goes here?&quot;);
    },
    loading: function() {
        console.log(&quot;Upload for dataid &quot; + $dataid + &quot; loading!&quot;);
        td.html(&quot;Loading anim goes here!&quot;);
    },
    onComplete: function(returned_json) {
        console.log(&quot;Upload for dataid &quot; + $dataid + &quot; complete, status &quot; + returned_json);
        td.html(&quot;Image thumbnail goes here!&quot;);
    }
});
&lt;/code&gt;

I&#039;m using jQuery v1.6.2.  When I trigger the creation of the form it looks fine.  I select a file and click the submit button to start the upload, and I see the onStart and loading callbacks are called and log to the console, but no request is sent to the server, and the onComplete callback is never called.

I&#039;m using Firefox 6 (on Ubuntu/Linux) at the moment.  If I try with Chrome 13, the upload request appears to actually be sent, but the onComplete callback still doesn&#039;t fire.

Any advice?  Does this script have incompatibilities with newer jQuery or newer browsers?  Is there any info I can collect you&#039;d like to see?

Thanks,

Charles</description>
		<content:encoded><![CDATA[<p>Greetings,</p>
<p>Thanks for posting this; I was looking for a simple ajax-y uploader to handle some image uploads without page refreshes and yours looks good and doesn&#8217;t depend on flash like most other similar scripts appear to.  </p>
<p>I am however having a problem with it &#8212; I see the onStart and loading callbacks trigger, but the upload form does not appear to submit, and the onComplete callback is never called.</p>
<p>My upload form is created in a table cell on demand, and then I call .ajaxUpload() on it like this:<br />
<code><br />
[...]<br />
var $dataid = ...<br />
var $formid = ...<br />
var $this_form = ...<br />
td.html($this_form);<br />
$('#' + $formid).ajaxUpload({<br />
    onStart: function() {<br />
        console.log("Upload for dataid " + $dataid + " starting!");<br />
        td.html("Loading anim maybe goes here?");<br />
    },<br />
    loading: function() {<br />
        console.log("Upload for dataid " + $dataid + " loading!");<br />
        td.html("Loading anim goes here!");<br />
    },<br />
    onComplete: function(returned_json) {<br />
        console.log("Upload for dataid " + $dataid + " complete, status " + returned_json);<br />
        td.html("Image thumbnail goes here!");<br />
    }<br />
});<br />
</code></p>
<p>I&#8217;m using jQuery v1.6.2.  When I trigger the creation of the form it looks fine.  I select a file and click the submit button to start the upload, and I see the onStart and loading callbacks are called and log to the console, but no request is sent to the server, and the onComplete callback is never called.</p>
<p>I&#8217;m using Firefox 6 (on Ubuntu/Linux) at the moment.  If I try with Chrome 13, the upload request appears to actually be sent, but the onComplete callback still doesn&#8217;t fire.</p>
<p>Any advice?  Does this script have incompatibilities with newer jQuery or newer browsers?  Is there any info I can collect you&#8217;d like to see?</p>
<p>Thanks,</p>
<p>Charles</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A simple JQuery font chooser plugin by james</title>
		<link>http://www.fullfatcode.com/2009/06/05/a-simple-jquery-font-chooser-plugin/comment-page-1/#comment-3407</link>
		<dc:creator>james</dc:creator>
		<pubDate>Sat, 09 Apr 2011 23:45:48 +0000</pubDate>
		<guid isPermaLink="false">http://fullfatcode.wordpress.com/?p=7#comment-3407</guid>
		<description>Hi Rob,

I have released an updated version complete with demo:
http://www.fullfatcode.com/2011/04/10/jquery-font-selector-version-2/

Hope you find it useful :)</description>
		<content:encoded><![CDATA[<p>Hi Rob,</p>
<p>I have released an updated version complete with demo:<br />
<a href="http://www.fullfatcode.com/2011/04/10/jquery-font-selector-version-2/" rel="nofollow">http://www.fullfatcode.com/2011/04/10/jquery-font-selector-version-2/</a></p>
<p>Hope you find it useful <img src='http://www.fullfatcode.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A simple JQuery font chooser plugin by Rob</title>
		<link>http://www.fullfatcode.com/2009/06/05/a-simple-jquery-font-chooser-plugin/comment-page-1/#comment-3355</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Thu, 07 Apr 2011 11:52:49 +0000</pubDate>
		<guid isPermaLink="false">http://fullfatcode.wordpress.com/?p=7#comment-3355</guid>
		<description>Any chance of an example page with this? Sorry I&#039;m about a year too late :D

Trying to implement it on a page but it is only putting in the first option.. i.e Arial. Not sure what is going wrong.</description>
		<content:encoded><![CDATA[<p>Any chance of an example page with this? Sorry I&#8217;m about a year too late <img src='http://www.fullfatcode.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Trying to implement it on a page but it is only putting in the first option.. i.e Arial. Not sure what is going wrong.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A simple JQuery font chooser plugin by james</title>
		<link>http://www.fullfatcode.com/2009/06/05/a-simple-jquery-font-chooser-plugin/comment-page-1/#comment-1601</link>
		<dc:creator>james</dc:creator>
		<pubDate>Sat, 27 Nov 2010 17:04:23 +0000</pubDate>
		<guid isPermaLink="false">http://fullfatcode.wordpress.com/?p=7#comment-1601</guid>
		<description>A guy called Mike kindly posted this the other day where this blog used to be located - thanks Mike!

came across your plugin a few days ago. For my purposes I needed a somewhat more slick version, so I basically did what you said you hoped to do &quot;someday&quot; - wrote my own version (http://www.regios.org/jquery-font-picker-plugin) which can take an arbitrarily styled div and display an overlayed div with font preview. Used your font list, hope you don&#039;t mind :)</description>
		<content:encoded><![CDATA[<p>A guy called Mike kindly posted this the other day where this blog used to be located &#8211; thanks Mike!</p>
<p>came across your plugin a few days ago. For my purposes I needed a somewhat more slick version, so I basically did what you said you hoped to do &#8220;someday&#8221; &#8211; wrote my own version (<a href="http://www.regios.org/jquery-font-picker-plugin" rel="nofollow">http://www.regios.org/jquery-font-picker-plugin</a>) which can take an arbitrarily styled div and display an overlayed div with font preview. Used your font list, hope you don&#8217;t mind <img src='http://www.fullfatcode.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Object Oriented Hook Management in PHP5 by feha</title>
		<link>http://www.fullfatcode.com/2009/06/22/object-oriented-hook-management-in-php5/comment-page-1/#comment-1339</link>
		<dc:creator>feha</dc:creator>
		<pubDate>Tue, 21 Sep 2010 10:27:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.fullfatcode.com/?p=68#comment-1339</guid>
		<description>This is amazing, thank you fro a great sample and idea :-)</description>
		<content:encoded><![CDATA[<p>This is amazing, thank you fro a great sample and idea <img src='http://www.fullfatcode.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A simple JQuery font chooser plugin by james</title>
		<link>http://www.fullfatcode.com/2009/06/05/a-simple-jquery-font-chooser-plugin/comment-page-1/#comment-1054</link>
		<dc:creator>james</dc:creator>
		<pubDate>Fri, 30 Apr 2010 17:23:54 +0000</pubDate>
		<guid isPermaLink="false">http://fullfatcode.wordpress.com/?p=7#comment-1054</guid>
		<description>Hi Nick,
Thanks for your comment!  I&#039;ll see if I can modify the code at some point.
I think I did try something similar, and found it didn&#039;t work in Internet Explorer.</description>
		<content:encoded><![CDATA[<p>Hi Nick,<br />
Thanks for your comment!  I&#8217;ll see if I can modify the code at some point.<br />
I think I did try something similar, and found it didn&#8217;t work in Internet Explorer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A simple JQuery font chooser plugin by Nick Franceschina</title>
		<link>http://www.fullfatcode.com/2009/06/05/a-simple-jquery-font-chooser-plugin/comment-page-1/#comment-1053</link>
		<dc:creator>Nick Franceschina</dc:creator>
		<pubDate>Fri, 30 Apr 2010 17:13:55 +0000</pubDate>
		<guid isPermaLink="false">http://fullfatcode.wordpress.com/?p=7#comment-1053</guid>
		<description>well that didn&#039;t work... ugh...   James, you know what I meant:

option style=&quot;font-family:&#039; + item.split(&#039;,&#039;)[0] + &#039;&quot;


-grrrr</description>
		<content:encoded><![CDATA[<p>well that didn&#8217;t work&#8230; ugh&#8230;   James, you know what I meant:</p>
<p>option style=&#8221;font-family:&#8217; + item.split(&#8216;,&#8217;)[0] + &#8216;&#8221;</p>
<p>-grrrr</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A simple JQuery font chooser plugin by Nick Franceschina</title>
		<link>http://www.fullfatcode.com/2009/06/05/a-simple-jquery-font-chooser-plugin/comment-page-1/#comment-1052</link>
		<dc:creator>Nick Franceschina</dc:creator>
		<pubDate>Fri, 30 Apr 2010 17:12:30 +0000</pubDate>
		<guid isPermaLink="false">http://fullfatcode.wordpress.com/?p=7#comment-1052</guid>
		<description>nice little plugin... thank you for sharing it.  and if anyone is interested, changing line 39 to:

jQuery(sel).append(&#039;&#039; + item.split(&#039;,&#039;)[0] + &#039;&#039;);

will style each font name in the drop down as it&#039;s font style... which should work correctly in most modern browsers...</description>
		<content:encoded><![CDATA[<p>nice little plugin&#8230; thank you for sharing it.  and if anyone is interested, changing line 39 to:</p>
<p>jQuery(sel).append(&#8221; + item.split(&#8216;,&#8217;)[0] + &#8221;);</p>
<p>will style each font name in the drop down as it&#8217;s font style&#8230; which should work correctly in most modern browsers&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Object Oriented Hook Management in PHP5 by Jonas Erlandsson</title>
		<link>http://www.fullfatcode.com/2009/06/22/object-oriented-hook-management-in-php5/comment-page-1/#comment-831</link>
		<dc:creator>Jonas Erlandsson</dc:creator>
		<pubDate>Fri, 19 Mar 2010 17:42:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.fullfatcode.com/?p=68#comment-831</guid>
		<description>Thank you. It is surprisingly hard to find good code that shows how hooking can be done in PHP5. Have you worked any more on this? If you have any other deep insights into how to build a nice hook/plug-in system in PHP5 I&#039;d be really interested in a mail ;o)</description>
		<content:encoded><![CDATA[<p>Thank you. It is surprisingly hard to find good code that shows how hooking can be done in PHP5. Have you worked any more on this? If you have any other deep insights into how to build a nice hook/plug-in system in PHP5 I&#8217;d be really interested in a mail ;o)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Choosing a CMS in 10 Steps by FullFatCode » Blog Archive » Choosing a CMS in 10 Steps &#8211; The code &#8230; &#124; CmsDen</title>
		<link>http://www.fullfatcode.com/2009/09/03/choosing-a-cms-in-10-steps/comment-page-1/#comment-21</link>
		<dc:creator>FullFatCode » Blog Archive » Choosing a CMS in 10 Steps &#8211; The code &#8230; &#124; CmsDen</dc:creator>
		<pubDate>Thu, 03 Sep 2009 15:03:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.fullfatcode.com/?p=118#comment-21</guid>
		<description>[...] the original here: FullFatCode » Blog Archive » Choosing a CMS in 10 Steps - The code ... Share this on del.icio.usDigg this!Share this on RedditStumble upon something good? Share it on [...]</description>
		<content:encoded><![CDATA[<p>[...] the original here: FullFatCode » Blog Archive » Choosing a CMS in 10 Steps &#8211; The code &#8230; Share this on del.icio.usDigg this!Share this on RedditStumble upon something good? Share it on [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

