<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Carl Sziebert &#187; jQuery</title>
	<atom:link href="http://sziebert.net/posts/category/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://sziebert.net</link>
	<description>is a software engineer with an interest in Spring, Hibernate, Red5 and jQuery development.</description>
	<lastBuildDate>Thu, 29 Jul 2010 20:25:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Interaction prototyping with IxEdit</title>
		<link>http://sziebert.net/posts/interaction-prototyping-with-ixedit/</link>
		<comments>http://sziebert.net/posts/interaction-prototyping-with-ixedit/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 13:49:10 +0000</pubDate>
		<dc:creator>Carl Sziebert</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[ixedit]]></category>
		<category><![CDATA[prototyping]]></category>
		<category><![CDATA[ux engineering]]></category>

		<guid isPermaLink="false">http://sziebert.net/?p=171</guid>
		<description><![CDATA[<p><a href="http://www.ixedit.com/">IxEdit</a> is a superb tool for on-the-fly prototyping of interactive functionality with <a href="http://jquery.com/">jQuery</a>.  It is embedded directly in the html you are working with, is lightweight, and actually produces readable/usable code. If you do anything with jQuery, you&#8217;ll want to give IxEdit a look.</p>
]]></description>
		<wfw:commentRss>http://sziebert.net/posts/interaction-prototyping-with-ixedit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Transmit file upload plugin updated</title>
		<link>http://sziebert.net/posts/jquery-transmit-file-upload-plugin-updated/</link>
		<comments>http://sziebert.net/posts/jquery-transmit-file-upload-plugin-updated/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 22:03:47 +0000</pubDate>
		<dc:creator>Carl Sziebert</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://sziebert.net/?p=80</guid>
		<description><![CDATA[<p>Having finally gotten a few hours to myself, I&#8217;ve updated the jquery-transmit file upload plugin to support Flash 10.  Because of the security restrictions added in the most recent revision of the flash browser plugin, the calls to trigger the file selection dialog needed to occur in the SWF itself.  To achieve this, the SWF is placed on a layer above the links triggering the dialog.  You should be able to successfully edit the HTML to your liking without much consequence.  Though, you should be careful not to rename any of the ids or classes.  The plugin relies on them to place the SWF and resize it as necessary. As with the initial release, the plugin should be considered a work in progress and is not yet suitable for a production environment. Hopefully, this fact won&#8217;t deter you from giving the plugin a try.  Source and downloads are available at <a href="http://code.google.com/p/jquery-transmit/">googlecode</a>.  As always, constructive feedback is very much appreciated.</p>
]]></description>
		<wfw:commentRss>http://sziebert.net/posts/jquery-transmit-file-upload-plugin-updated/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Flickr style multiple file upload with jQuery</title>
		<link>http://sziebert.net/posts/flickr-style-multiple-file-upload-with-jquery/</link>
		<comments>http://sziebert.net/posts/flickr-style-multiple-file-upload-with-jquery/#comments</comments>
		<pubDate>Fri, 12 Sep 2008 21:37:52 +0000</pubDate>
		<dc:creator>Carl Sziebert</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://sziebert.net/?p=15</guid>
		<description><![CDATA[<p>A while back, <a href="http://gregoire.org/">Paul Gregoire</a> introduced me to the <a href="http://jquery.com">jQuery JavaScript library</a>.  It didn&#8217;t take long for me to realize the power and elegance of this library.  For the longest time, I&#8217;ve been wanting to take a shot at authoring a plugin for jQuery and I&#8217;ve finally gotten around to it.  So, it is my pleasure to announce the creation of the <a href="http://code.google.com/p/jquery-transmit">jquery.transmit plugin</a>.  It is a flash-backed multiple file upload utility with a user experience similar to that of Flickr&#8217;s current uploader.  The goals for the plugin were simple: Provide an easy-to-use interface, use flash to work around HTML and JavaScript based file upload issues, and wire it all together with jQuery. Getting started with the plugin is quite simple.  Import the necessary <acronym title="Cascading Style Sheets">CSS</acronym> and JavaScript dependencies, edit the supplied HTML to your liking and  invoke the plugin like so:</p>
<pre class="brush: jscript;">
    $(document).ready(function() {
        $('#transmit').transmit('http://mysite.com/upload/');
    });
</pre>
<p>While the plugin is still very much in its infancy and should be considered a work in progress, it is my opinion that it is easier to shake out bugs using an iterative development process.  So, keeping that in mind, I&#8217;m hoping that a couple of you brave souls will wander over to <a href="http://code.google.com/p/jquery-transmit">googlecode</a> and give it a try.  Constructive feedback is very much appreciated.</p>
]]></description>
		<wfw:commentRss>http://sziebert.net/posts/flickr-style-multiple-file-upload-with-jquery/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
	</channel>
</rss>
