<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.1.3" -->
<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/"
	>

<channel>
	<title>Ajaxorized</title>
	<link>http://ajaxorized.com</link>
	<description>Web Innovation</description>
	<pubDate>Mon, 23 Jun 2008 12:00:24 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1.3</generator>
	<language>en</language>
			<item>
		<title>Magic domwalking</title>
		<link>http://ajaxorized.com/magic-domwalking/</link>
		<comments>http://ajaxorized.com/magic-domwalking/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 07:52:42 +0000</pubDate>
		<dc:creator>Willem</dc:creator>
		
		<category><![CDATA[Prototype]]></category>

		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://ajaxorized.com/magic-domwalking/</guid>
		<description><![CDATA[Prototype contains a number of functions that can be very useful in walking trough your DOM structure. Let's look at a short example. Suppose we have this piece of HTML:
&#160;
&#60;table id = &#34;maintable&#34;&#62;
&#60;tbody&#62;
&#60;tr class = &#34;row&#34; id = &#34;row1&#34;&#62;
&#60;td class = &#34;cell&#34; id = &#34;cell1&#34;&#62;Cell 1&#60;/td&#62;
&#60;td class = &#34;cell&#34; id = &#34;cell2&#34;&#62;Cell 2&#60;/td&#62;
&#60;td class = [...]]]></description>
			<content:encoded><![CDATA[<p>Prototype contains a number of functions that can be very useful in walking trough your DOM structure. Let's look at a short example. Suppose we have this piece of HTML:</p>
<pre class="javascript">&nbsp;
&lt;table id = <span style="color: #3366CC;">&quot;maintable&quot;</span>&gt;
&lt;tbody&gt;
&lt;tr <span style="color: #003366; font-weight: bold;">class</span> = <span style="color: #3366CC;">&quot;row&quot;</span> id = <span style="color: #3366CC;">&quot;row1&quot;</span>&gt;
&lt;td <span style="color: #003366; font-weight: bold;">class</span> = <span style="color: #3366CC;">&quot;cell&quot;</span> id = <span style="color: #3366CC;">&quot;cell1&quot;</span>&gt;Cell <span style="color: #CC0000;">1</span>&lt;/td&gt;
&lt;td <span style="color: #003366; font-weight: bold;">class</span> = <span style="color: #3366CC;">&quot;cell&quot;</span> id = <span style="color: #3366CC;">&quot;cell2&quot;</span>&gt;Cell <span style="color: #CC0000;">2</span>&lt;/td&gt;
&lt;td <span style="color: #003366; font-weight: bold;">class</span> = <span style="color: #3366CC;">&quot;cell&quot;</span> id = <span style="color: #3366CC;">&quot;cell3&quot;</span>&gt;Cell <span style="color: #CC0000;">3</span>&lt;/td&gt;
&lt;/tr&gt;
&lt;tr <span style="color: #003366; font-weight: bold;">class</span> = <span style="color: #3366CC;">&quot;row&quot;</span> id = <span style="color: #3366CC;">&quot;row2&quot;</span>&gt;
&lt;td <span style="color: #003366; font-weight: bold;">class</span> = <span style="color: #3366CC;">&quot;cell&quot;</span> id = <span style="color: #3366CC;">&quot;cell4&quot;</span> colspan = <span style="color: #3366CC;">&quot;3&quot;</span>&gt;
&lt;select id = <span style="color: #3366CC;">&quot;selectbox&quot;</span>&gt;
					&lt;optgroup id = <span style="color: #3366CC;">&quot;group1&quot;</span>&gt;First group&lt;/optgroup&gt;
					&lt;option value = <span style="color: #3366CC;">&quot;1&quot;</span> id = <span style="color: #3366CC;">&quot;option1&quot;</span>&gt;Option <span style="color: #CC0000;">1</span>&lt;/option&gt;
					&lt;option value = <span style="color: #3366CC;">&quot;2&quot;</span> id = <span style="color: #3366CC;">&quot;option2&quot;</span>&gt;Option <span style="color: #CC0000;">2</span>&lt;/option&gt;
					&lt;optgroup id = <span style="color: #3366CC;">&quot;group2&quot;</span>&gt;Second group&lt;/optgroup&gt;
					&lt;option value = <span style="color: #3366CC;">&quot;3&quot;</span> id = <span style="color: #3366CC;">&quot;option3&quot;</span>&gt;Option <span style="color: #CC0000;">3</span>&lt;/option&gt;
					&lt;option value = <span style="color: #3366CC;">&quot;4&quot;</span> id = <span style="color: #3366CC;">&quot;option4&quot;</span>&gt;Option <span style="color: #CC0000;">4</span>&lt;/option&gt;
				&lt;/select&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&nbsp;</pre>
<p>Using up(), down(), next() and previous() we can find our way easily trough the DOM elements:</p>
<pre class="javascript">&nbsp;
$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'maintable'</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">down</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #009900; font-style: italic;">// returns tbody element</span>
$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'maintable'</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">down</span><span style="color: #66cc66;">&#40;</span><span style="color: #CC0000;">1</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #009900; font-style: italic;">// returns tr#row1</span>
$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'maintable'</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">down</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">down</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">down</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #009900; font-style: italic;">// returns td#cell1, use down(2) instead</span>
$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'maintable'</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">down</span><span style="color: #66cc66;">&#40;</span><span style="color: #CC0000;">2</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">next</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #009900; font-style: italic;">// returns td#cell2</span>
$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'cell1'</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">up</span><span style="color: #66cc66;">&#40;</span><span style="color: #CC0000;">2</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #009900; font-style: italic;">// returns table#maintable</span>
$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'cell2'</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">up</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">next</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">down</span><span style="color: #66cc66;">&#40;</span><span style="color: #CC0000;">1</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #009900; font-style: italic;">// returns select#selectbox</span>
&nbsp;
<span style="color: #009900; font-style: italic;">/* include some CSS Selectors */</span>
$$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'table'</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#91;</span><span style="color: #CC0000;">0</span><span style="color: #66cc66;">&#93;</span>.<span style="color: #006600;">down</span><span style="color: #66cc66;">&#40;</span><span style="color: #CC0000;">1</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #009900; font-style: italic;">// returns tr#row1, use $('maintable') instead</span>
$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'maintable'</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">down</span><span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'.row'</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #009900; font-style: italic;">// return tr#row1</span>
$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'maintable'</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">down</span><span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'#group1'</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #009900; font-style: italic;">// returns optgroup#group1</span>
$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'option2'</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">next</span><span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'option'</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #009900; font-style: italic;">// returns option#option3, mind skipping of optgroup</span>
$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'option4'</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">up</span><span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'.row'</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">previous</span><span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'.row'</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">down</span><span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'.cell'</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #009900; font-style: italic;">// return td#cell1</span></pre>

Add to: <span class="obsocialbookmarker"><a href="http://del.icio.us/post?url=http%3A%2F%2Fajaxorized.com%2Fmagic-domwalking%2F&amp;title=Magic+domwalking" target="_blank" title="Save to del.icio.us"> <img src="http://ajaxorized.com/wp-content/plugins/social/del.jpg" width="16" height="16" alt="del.icio.us"/></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fajaxorized.com%2Fmagic-domwalking%2F&amp;title=Magic+domwalking" target="_blank" title="Save to Reddit"> <img src="http://reddit.com/favicon.ico" width="16" height="16" alt="Reddit"/></a>
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fajaxorized.com%2Fmagic-domwalking%2F&amp;title=Magic+domwalking" target="_blank" title="Slashdot It!"> <img src="http://slashdot.org/favicon.ico" width="16" height="16" alt="Slashdot"/></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fajaxorized.com%2Fmagic-domwalking%2F&amp;title=Magic+domwalking" target="_blank" title="Digg This Post!"> <img src="http://digg.com/favicon.ico" width="16" height="16" alt="Digg"/></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fajaxorized.com%2Fmagic-domwalking%2F"" target="_blank" title="Share on Facebook!"> <img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="Facebook"/></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fajaxorized.com%2Fmagic-domwalking%2F" target="_blank" title="Add to my Technorati Favorites!"> <img src="http://technorati.com/favicon.ico" width="16" height="16" alt="Technorati"/></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fajaxorized.com%2Fmagic-domwalking%2F&amp;title=Magic+domwalking" target="_blank" title="Add to my Google Bookmarks!"> <img src="http://www.google.com/favicon.ico" width="16" height="16" alt="Google"/></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fajaxorized.com%2Fmagic-domwalking%2F&amp;title=Magic+domwalking" target="_blank" title="Stumble it!"> <img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="StumbleUpon"/></a>
<a href="https://favorites.live.com/quickadd.aspx?marklet=1&mkt=en-us&url=http%3A%2F%2Fajaxorized.com%2Fmagic-domwalking%2F&title=Magic+domwalking&top=1" target="_blank" title="Add to Windows Live!"> <img src="http://favorites.live.com/favicon.ico" width="16" height="16" alt="Windows Live"/></a>
<a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fajaxorized.com%2Fmagic-domwalking%2F&t=Magic+domwalking" target="_blank" title="Add to Yahoo!"> <img src="http://myweb2.search.yahoo.com/favicon.ico" width="16" height="16" alt="Yahoo"/></a></span>]]></content:encoded>
			<wfw:commentRss>http://ajaxorized.com/magic-domwalking/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Phototype: image manipulation with Javascript</title>
		<link>http://ajaxorized.com/phototype-image-manipulation-with-javascript/</link>
		<comments>http://ajaxorized.com/phototype-image-manipulation-with-javascript/#comments</comments>
		<pubDate>Sat, 24 May 2008 12:39:05 +0000</pubDate>
		<dc:creator>Willem</dc:creator>
		
		<category><![CDATA[Prototype]]></category>

		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://ajaxorized.com/phototype-image-manipulation-with-javascript/</guid>
		<description><![CDATA[Lately I had same crazy thoughts on coding a javascript wrapper to manipulate images rendered on the server-side. I decided to do some test which eventually resulted in phototype, a client/server-side library, based on prototype, which supports all kinds of image manipulations. On the serverside the library is powered by combination of PHP/GD that renders [...]]]></description>
			<content:encoded><![CDATA[<p>Lately I had same crazy thoughts on coding a javascript wrapper to manipulate images rendered on the server-side. I decided to do some test which eventually resulted in <strong>phototype</strong>, a client/server-side library, based on prototype, which supports all kinds of image manipulations. On the serverside the library is powered by combination of PHP/GD that renders the image. With phototype, you are able to <strong>rotate</strong>, <strong>resize</strong>, <strong>flip</strong> and <strong>do some other cool effects</strong> to images. Let's start a quick tour.  <a href="http://ajaxorized.com/phototype-image-manipulation-with-javascript/#more-32" class="more-link">(more...)</a></p>

Add to: <span class="obsocialbookmarker"><a href="http://del.icio.us/post?url=http%3A%2F%2Fajaxorized.com%2Fphototype-image-manipulation-with-javascript%2F&amp;title=Phototype%3A+image+manipulation+with+Javascript" target="_blank" title="Save to del.icio.us"> <img src="http://ajaxorized.com/wp-content/plugins/social/del.jpg" width="16" height="16" alt="del.icio.us"/></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fajaxorized.com%2Fphototype-image-manipulation-with-javascript%2F&amp;title=Phototype%3A+image+manipulation+with+Javascript" target="_blank" title="Save to Reddit"> <img src="http://reddit.com/favicon.ico" width="16" height="16" alt="Reddit"/></a>
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fajaxorized.com%2Fphototype-image-manipulation-with-javascript%2F&amp;title=Phototype%3A+image+manipulation+with+Javascript" target="_blank" title="Slashdot It!"> <img src="http://slashdot.org/favicon.ico" width="16" height="16" alt="Slashdot"/></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fajaxorized.com%2Fphototype-image-manipulation-with-javascript%2F&amp;title=Phototype%3A+image+manipulation+with+Javascript" target="_blank" title="Digg This Post!"> <img src="http://digg.com/favicon.ico" width="16" height="16" alt="Digg"/></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fajaxorized.com%2Fphototype-image-manipulation-with-javascript%2F"" target="_blank" title="Share on Facebook!"> <img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="Facebook"/></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fajaxorized.com%2Fphototype-image-manipulation-with-javascript%2F" target="_blank" title="Add to my Technorati Favorites!"> <img src="http://technorati.com/favicon.ico" width="16" height="16" alt="Technorati"/></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fajaxorized.com%2Fphototype-image-manipulation-with-javascript%2F&amp;title=Phototype%3A+image+manipulation+with+Javascript" target="_blank" title="Add to my Google Bookmarks!"> <img src="http://www.google.com/favicon.ico" width="16" height="16" alt="Google"/></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fajaxorized.com%2Fphototype-image-manipulation-with-javascript%2F&amp;title=Phototype%3A+image+manipulation+with+Javascript" target="_blank" title="Stumble it!"> <img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="StumbleUpon"/></a>
<a href="https://favorites.live.com/quickadd.aspx?marklet=1&mkt=en-us&url=http%3A%2F%2Fajaxorized.com%2Fphototype-image-manipulation-with-javascript%2F&title=Phototype%3A+image+manipulation+with+Javascript&top=1" target="_blank" title="Add to Windows Live!"> <img src="http://favorites.live.com/favicon.ico" width="16" height="16" alt="Windows Live"/></a>
<a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fajaxorized.com%2Fphototype-image-manipulation-with-javascript%2F&t=Phototype%3A+image+manipulation+with+Javascript" target="_blank" title="Add to Yahoo!"> <img src="http://myweb2.search.yahoo.com/favicon.ico" width="16" height="16" alt="Yahoo"/></a></span>]]></content:encoded>
			<wfw:commentRss>http://ajaxorized.com/phototype-image-manipulation-with-javascript/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Introducing: The sliding date-picker</title>
		<link>http://ajaxorized.com/introducing-the-sliding-date-picker/</link>
		<comments>http://ajaxorized.com/introducing-the-sliding-date-picker/#comments</comments>
		<pubDate>Mon, 21 Jan 2008 09:30:39 +0000</pubDate>
		<dc:creator>Willem</dc:creator>
		
		<category><![CDATA[Ajaxorized]]></category>

		<category><![CDATA[Scriptaculous]]></category>

		<category><![CDATA[Prototype]]></category>

		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://ajaxorized.com/introducing-the-sliding-date-picker/</guid>
		<description><![CDATA[Update (May 10): Thank you all for your support. Currently I am improving the dateslider, check the newer (warning, not fully tested and stable) version here . I've fixed the problem of startdate > enddate and working on some other functionalities. Thanks again, you guys keep me going (:
Update (May 17): I am planning to [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Update (May 10):</strong> <em>Thank you all for your support. Currently I am improving the dateslider, check the newer (warning, not fully tested and stable) version <a href="http://ajaxorized.com/dateslider/v1.1/slider.html">here</a> . I've fixed the problem of startdate > enddate and working on some other functionalities. Thanks again, you guys keep me going (:</em></p>
<p><strong>Update (May 17):</strong> <em>I am planning to move this project to Google Code. I received some nice improvements, so it would be good to form a team and develop this project further to fix all the bugs that are still out there. Contact me at willem [:at:] ajaxorized</em></p>
<p>You came for the demo right? It's <a href="/dateslider/slider.html" target = "_blank">here</a>. </p>
<p><img src="/dateslider/sliderscreenie.jpg" alt="Ajaxorized Dateslider" align="left" style = "margin:5px 5px 5px 0px; border: 1px solid #000;">Due to the development of <a href="http://www.qash.nl">Qash.nl</a>, a Dutch personal finance website full of cool javascript features, it's somewhat quiet around here. But to keep you satisfied, we present the <strong>sliding date-picker</strong>. This element enables you to pick dates with a simple slider bar. By dragging the bar over the time-line, the dates change instantly. Besides this, when the user decides to manually change the dates, the bar is automatically adjusted to the corresponding dates. As you are used to from us, the script is based on Prototype/Scriptaculous, but now combined with the <em>very sexy</em> <a href="http://datejs.com">DateJs</a> library.</p>
<p>Implemeting is easy. First, include de javascript libraries:</p>
<pre lang=html>
&lt;script type="text/javascript" src="js/prototype.js" &gt;&lt;/script&gt;
&lt;script type="text/javascript" src="js/scriptaculous.js?load=effects,builder,dragdrop" &gt;&lt;/script&gt;
&lt;script type="text/javascript" src="js/date-en-US.js" &gt;&lt;/script&gt;
&lt;script type="text/javascript" src="js/dateslider.js" &gt;&lt;/script&gt;</pre>
<p>Then, include the stylesheet:</p>
<pre lang=html>
&lt;link rel="stylesheet" href="css/dateslider.css" type = "text/css" /&gt;</pre>
<p>Then copypaste this to your HTML:</p>
<pre lang=html>
&lt;div id = "slider-container"&gt;
	&lt;div id = "sliderbar"&gt;&lt;/div&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;form&gt;
&lt;label for = "datestart"&gt;Start:&lt;/label&gt;  &lt;input type = "text" id = "datestart"&gt;
&lt;label for = "dateend"&gt;End:&lt;/label&gt;  &lt;input typde = "text" id = "dateend"&gt;
&lt;/form&gt;</pre>
<p>Finally, create the dateslider object. The parameters are [dragbar_id],[date_bar_start],[date_bar_end],[year_start],[year_end]</p>
<pre  lang=javascript>
p_oDateSlider = new DateSlider('sliderbar', '2007-10-01', '2008-10-01', 2001, 2009);
p_oDateSlider.attachFields($('datestart'), $('dateend'));</pre>
<p>Thats it! I've tested it in Firefox 2.x, and IE6/7, please notify me when your browser isn't supported. You can download the full package, including prototype 1.6 and scriptaculous 1.8, <a href="/dateslider/dateslider.zip">here</a>, it's under the GPL license.</p>
<p>Enjoy!</p>

Add to: <span class="obsocialbookmarker"><a href="http://del.icio.us/post?url=http%3A%2F%2Fajaxorized.com%2Fintroducing-the-sliding-date-picker%2F&amp;title=Introducing%3A+The+sliding+date-picker" target="_blank" title="Save to del.icio.us"> <img src="http://ajaxorized.com/wp-content/plugins/social/del.jpg" width="16" height="16" alt="del.icio.us"/></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fajaxorized.com%2Fintroducing-the-sliding-date-picker%2F&amp;title=Introducing%3A+The+sliding+date-picker" target="_blank" title="Save to Reddit"> <img src="http://reddit.com/favicon.ico" width="16" height="16" alt="Reddit"/></a>
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fajaxorized.com%2Fintroducing-the-sliding-date-picker%2F&amp;title=Introducing%3A+The+sliding+date-picker" target="_blank" title="Slashdot It!"> <img src="http://slashdot.org/favicon.ico" width="16" height="16" alt="Slashdot"/></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fajaxorized.com%2Fintroducing-the-sliding-date-picker%2F&amp;title=Introducing%3A+The+sliding+date-picker" target="_blank" title="Digg This Post!"> <img src="http://digg.com/favicon.ico" width="16" height="16" alt="Digg"/></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fajaxorized.com%2Fintroducing-the-sliding-date-picker%2F"" target="_blank" title="Share on Facebook!"> <img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="Facebook"/></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fajaxorized.com%2Fintroducing-the-sliding-date-picker%2F" target="_blank" title="Add to my Technorati Favorites!"> <img src="http://technorati.com/favicon.ico" width="16" height="16" alt="Technorati"/></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fajaxorized.com%2Fintroducing-the-sliding-date-picker%2F&amp;title=Introducing%3A+The+sliding+date-picker" target="_blank" title="Add to my Google Bookmarks!"> <img src="http://www.google.com/favicon.ico" width="16" height="16" alt="Google"/></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fajaxorized.com%2Fintroducing-the-sliding-date-picker%2F&amp;title=Introducing%3A+The+sliding+date-picker" target="_blank" title="Stumble it!"> <img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="StumbleUpon"/></a>
<a href="https://favorites.live.com/quickadd.aspx?marklet=1&mkt=en-us&url=http%3A%2F%2Fajaxorized.com%2Fintroducing-the-sliding-date-picker%2F&title=Introducing%3A+The+sliding+date-picker&top=1" target="_blank" title="Add to Windows Live!"> <img src="http://favorites.live.com/favicon.ico" width="16" height="16" alt="Windows Live"/></a>
<a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fajaxorized.com%2Fintroducing-the-sliding-date-picker%2F&t=Introducing%3A+The+sliding+date-picker" target="_blank" title="Add to Yahoo!"> <img src="http://myweb2.search.yahoo.com/favicon.ico" width="16" height="16" alt="Yahoo"/></a></span>]]></content:encoded>
			<wfw:commentRss>http://ajaxorized.com/introducing-the-sliding-date-picker/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Another creative way to prevent bots from stealing your email addresses</title>
		<link>http://ajaxorized.com/another-creative-way-to-prevent-bots-from-stealing-your-email-addresses/</link>
		<comments>http://ajaxorized.com/another-creative-way-to-prevent-bots-from-stealing-your-email-addresses/#comments</comments>
		<pubDate>Tue, 15 Jan 2008 16:00:06 +0000</pubDate>
		<dc:creator>Willem</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[Ajaxorized]]></category>

		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://ajaxorized.com/another-creative-way-to-prevent-bots-from-stealing-your-email-addresses/</guid>
		<description><![CDATA[The following code (using prototype) prevents bots stealing the emailaddresses used on your website. Instead of including the emailaddress directly, use a div with a classname where the email-address needs to be placed:
Hi Bot! My email address is  &#60;div class = "email_here"&#62;&#60;/div&#62;!! Catch me if you can!
Then, use javascript to replace the email address [...]]]></description>
			<content:encoded><![CDATA[<p>The following code (using prototype) prevents bots stealing the emailaddresses used on your website. Instead of including the emailaddress directly, use a div with a classname where the email-address needs to be placed:</p>
<pre lang=html>Hi Bot! My email address is  &#60;div class = "email_here"&#62;&#60;/div&#62;!! Catch me if you can!</pre>
<p>Then, use javascript to replace the email address after the page is loaded:</p>
<pre lang=html>
$$('.email_here').each( function(e) {
  e.update('willem'+'@'+'ajaxorized.com').observe('click', function() { window.location = 'mailto:willem'+'@'+'ajaxorized.com'; }).setStyle({cursor:'pointer'});
	});
</pre>
<p>Mind the concatenation that is used to prevent stealing from your javascript file. Include this piece of code in your body onload event and no bots will ever steal your email addresses again!</p>

Add to: <span class="obsocialbookmarker"><a href="http://del.icio.us/post?url=http%3A%2F%2Fajaxorized.com%2Fanother-creative-way-to-prevent-bots-from-stealing-your-email-addresses%2F&amp;title=Another+creative+way+to+prevent+bots+from+stealing+your+email+addresses" target="_blank" title="Save to del.icio.us"> <img src="http://ajaxorized.com/wp-content/plugins/social/del.jpg" width="16" height="16" alt="del.icio.us"/></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fajaxorized.com%2Fanother-creative-way-to-prevent-bots-from-stealing-your-email-addresses%2F&amp;title=Another+creative+way+to+prevent+bots+from+stealing+your+email+addresses" target="_blank" title="Save to Reddit"> <img src="http://reddit.com/favicon.ico" width="16" height="16" alt="Reddit"/></a>
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fajaxorized.com%2Fanother-creative-way-to-prevent-bots-from-stealing-your-email-addresses%2F&amp;title=Another+creative+way+to+prevent+bots+from+stealing+your+email+addresses" target="_blank" title="Slashdot It!"> <img src="http://slashdot.org/favicon.ico" width="16" height="16" alt="Slashdot"/></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fajaxorized.com%2Fanother-creative-way-to-prevent-bots-from-stealing-your-email-addresses%2F&amp;title=Another+creative+way+to+prevent+bots+from+stealing+your+email+addresses" target="_blank" title="Digg This Post!"> <img src="http://digg.com/favicon.ico" width="16" height="16" alt="Digg"/></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fajaxorized.com%2Fanother-creative-way-to-prevent-bots-from-stealing-your-email-addresses%2F"" target="_blank" title="Share on Facebook!"> <img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="Facebook"/></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fajaxorized.com%2Fanother-creative-way-to-prevent-bots-from-stealing-your-email-addresses%2F" target="_blank" title="Add to my Technorati Favorites!"> <img src="http://technorati.com/favicon.ico" width="16" height="16" alt="Technorati"/></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fajaxorized.com%2Fanother-creative-way-to-prevent-bots-from-stealing-your-email-addresses%2F&amp;title=Another+creative+way+to+prevent+bots+from+stealing+your+email+addresses" target="_blank" title="Add to my Google Bookmarks!"> <img src="http://www.google.com/favicon.ico" width="16" height="16" alt="Google"/></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fajaxorized.com%2Fanother-creative-way-to-prevent-bots-from-stealing-your-email-addresses%2F&amp;title=Another+creative+way+to+prevent+bots+from+stealing+your+email+addresses" target="_blank" title="Stumble it!"> <img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="StumbleUpon"/></a>
<a href="https://favorites.live.com/quickadd.aspx?marklet=1&mkt=en-us&url=http%3A%2F%2Fajaxorized.com%2Fanother-creative-way-to-prevent-bots-from-stealing-your-email-addresses%2F&title=Another+creative+way+to+prevent+bots+from+stealing+your+email+addresses&top=1" target="_blank" title="Add to Windows Live!"> <img src="http://favorites.live.com/favicon.ico" width="16" height="16" alt="Windows Live"/></a>
<a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fajaxorized.com%2Fanother-creative-way-to-prevent-bots-from-stealing-your-email-addresses%2F&t=Another+creative+way+to+prevent+bots+from+stealing+your+email+addresses" target="_blank" title="Add to Yahoo!"> <img src="http://myweb2.search.yahoo.com/favicon.ico" width="16" height="16" alt="Yahoo"/></a></span>]]></content:encoded>
			<wfw:commentRss>http://ajaxorized.com/another-creative-way-to-prevent-bots-from-stealing-your-email-addresses/feed/</wfw:commentRss>
		</item>
		<item>
		<title>$happy = new Year();</title>
		<link>http://ajaxorized.com/happy-new-year/</link>
		<comments>http://ajaxorized.com/happy-new-year/#comments</comments>
		<pubDate>Fri, 04 Jan 2008 10:04:37 +0000</pubDate>
		<dc:creator>Willem</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ajaxorized.com/happy-new-year/</guid>
		<description><![CDATA[I know we are a bit late, but all the best whishes and geekluck in the year 2008!

Add to:  
 
 
 
]]></description>
			<content:encoded><![CDATA[<p>I know we are a bit late, but all the best whishes and geekluck in the year 2008!</p>

Add to: <span class="obsocialbookmarker"><a href="http://del.icio.us/post?url=http%3A%2F%2Fajaxorized.com%2Fhappy-new-year%2F&amp;title=%24happy+%3D+new+Year%28%29%3B" target="_blank" title="Save to del.icio.us"> <img src="http://ajaxorized.com/wp-content/plugins/social/del.jpg" width="16" height="16" alt="del.icio.us"/></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fajaxorized.com%2Fhappy-new-year%2F&amp;title=%24happy+%3D+new+Year%28%29%3B" target="_blank" title="Save to Reddit"> <img src="http://reddit.com/favicon.ico" width="16" height="16" alt="Reddit"/></a>
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fajaxorized.com%2Fhappy-new-year%2F&amp;title=%24happy+%3D+new+Year%28%29%3B" target="_blank" title="Slashdot It!"> <img src="http://slashdot.org/favicon.ico" width="16" height="16" alt="Slashdot"/></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fajaxorized.com%2Fhappy-new-year%2F&amp;title=%24happy+%3D+new+Year%28%29%3B" target="_blank" title="Digg This Post!"> <img src="http://digg.com/favicon.ico" width="16" height="16" alt="Digg"/></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fajaxorized.com%2Fhappy-new-year%2F"" target="_blank" title="Share on Facebook!"> <img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="Facebook"/></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fajaxorized.com%2Fhappy-new-year%2F" target="_blank" title="Add to my Technorati Favorites!"> <img src="http://technorati.com/favicon.ico" width="16" height="16" alt="Technorati"/></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fajaxorized.com%2Fhappy-new-year%2F&amp;title=%24happy+%3D+new+Year%28%29%3B" target="_blank" title="Add to my Google Bookmarks!"> <img src="http://www.google.com/favicon.ico" width="16" height="16" alt="Google"/></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fajaxorized.com%2Fhappy-new-year%2F&amp;title=%24happy+%3D+new+Year%28%29%3B" target="_blank" title="Stumble it!"> <img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="StumbleUpon"/></a>
<a href="https://favorites.live.com/quickadd.aspx?marklet=1&mkt=en-us&url=http%3A%2F%2Fajaxorized.com%2Fhappy-new-year%2F&title=%24happy+%3D+new+Year%28%29%3B&top=1" target="_blank" title="Add to Windows Live!"> <img src="http://favorites.live.com/favicon.ico" width="16" height="16" alt="Windows Live"/></a>
<a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fajaxorized.com%2Fhappy-new-year%2F&t=%24happy+%3D+new+Year%28%29%3B" target="_blank" title="Add to Yahoo!"> <img src="http://myweb2.search.yahoo.com/favicon.ico" width="16" height="16" alt="Yahoo"/></a></span>]]></content:encoded>
			<wfw:commentRss>http://ajaxorized.com/happy-new-year/feed/</wfw:commentRss>
		</item>
		<item>
		<title>3d image reflection with javascript</title>
		<link>http://ajaxorized.com/3d-image-reflection-with-javascript/</link>
		<comments>http://ajaxorized.com/3d-image-reflection-with-javascript/#comments</comments>
		<pubDate>Mon, 05 Nov 2007 20:42:47 +0000</pubDate>
		<dc:creator>Willem</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[Scriptaculous]]></category>

		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://ajaxorized.com/3d-image-reflection-with-javascript/</guid>
		<description><![CDATA[After the image transisition manager we released last week, this week an image reflection script, using unobtrusive javascript. By adding a small piece of javascript to your code you can create this stunning effect. It offers a solution that is:

Not involved with Flash, or
with CSS, and
 cross browser (Tested in Firefox, Opera and IE)
Preloading the [...]]]></description>
			<content:encoded><![CDATA[<p><img src="/reflection/sample.jpg" alt="Reflection" align = "left" />After the image <a href="/projects/image-transition-manager-image-transitions-with-scriptaculous/">transisition manager</a> we released last week, this week an image reflection script, using unobtrusive javascript. By adding a small piece of javascript to your code you can create this stunning effect. It offers a solution that is:
<ul>
<li>Not involved with Flash, or</li>
<li>with CSS, and</li>
<li> cross browser (Tested in Firefox, Opera and IE)</li>
<li>Preloading the images before reflection</li>
</ul>
<p>Here is a demo <a href="/reflection/reflection2.html" target = "_blank">on black</a> and <a href="/reflection/reflection.html"  target = "_blank">on white</a>.<br /> <a href="http://ajaxorized.com/3d-image-reflection-with-javascript/#more-25" class="more-link">(more...)</a></p>

Add to: <span class="obsocialbookmarker"><a href="http://del.icio.us/post?url=http%3A%2F%2Fajaxorized.com%2F3d-image-reflection-with-javascript%2F&amp;title=3d+image+reflection+with+javascript" target="_blank" title="Save to del.icio.us"> <img src="http://ajaxorized.com/wp-content/plugins/social/del.jpg" width="16" height="16" alt="del.icio.us"/></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fajaxorized.com%2F3d-image-reflection-with-javascript%2F&amp;title=3d+image+reflection+with+javascript" target="_blank" title="Save to Reddit"> <img src="http://reddit.com/favicon.ico" width="16" height="16" alt="Reddit"/></a>
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fajaxorized.com%2F3d-image-reflection-with-javascript%2F&amp;title=3d+image+reflection+with+javascript" target="_blank" title="Slashdot It!"> <img src="http://slashdot.org/favicon.ico" width="16" height="16" alt="Slashdot"/></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fajaxorized.com%2F3d-image-reflection-with-javascript%2F&amp;title=3d+image+reflection+with+javascript" target="_blank" title="Digg This Post!"> <img src="http://digg.com/favicon.ico" width="16" height="16" alt="Digg"/></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fajaxorized.com%2F3d-image-reflection-with-javascript%2F"" target="_blank" title="Share on Facebook!"> <img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="Facebook"/></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fajaxorized.com%2F3d-image-reflection-with-javascript%2F" target="_blank" title="Add to my Technorati Favorites!"> <img src="http://technorati.com/favicon.ico" width="16" height="16" alt="Technorati"/></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fajaxorized.com%2F3d-image-reflection-with-javascript%2F&amp;title=3d+image+reflection+with+javascript" target="_blank" title="Add to my Google Bookmarks!"> <img src="http://www.google.com/favicon.ico" width="16" height="16" alt="Google"/></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fajaxorized.com%2F3d-image-reflection-with-javascript%2F&amp;title=3d+image+reflection+with+javascript" target="_blank" title="Stumble it!"> <img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="StumbleUpon"/></a>
<a href="https://favorites.live.com/quickadd.aspx?marklet=1&mkt=en-us&url=http%3A%2F%2Fajaxorized.com%2F3d-image-reflection-with-javascript%2F&title=3d+image+reflection+with+javascript&top=1" target="_blank" title="Add to Windows Live!"> <img src="http://favorites.live.com/favicon.ico" width="16" height="16" alt="Windows Live"/></a>
<a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fajaxorized.com%2F3d-image-reflection-with-javascript%2F&t=3d+image+reflection+with+javascript" target="_blank" title="Add to Yahoo!"> <img src="http://myweb2.search.yahoo.com/favicon.ico" width="16" height="16" alt="Yahoo"/></a></span>]]></content:encoded>
			<wfw:commentRss>http://ajaxorized.com/3d-image-reflection-with-javascript/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Image Transition Manager</title>
		<link>http://ajaxorized.com/the-image-transition-manager/</link>
		<comments>http://ajaxorized.com/the-image-transition-manager/#comments</comments>
		<pubDate>Tue, 30 Oct 2007 13:56:11 +0000</pubDate>
		<dc:creator>martijn</dc:creator>
		
		<category><![CDATA[Scriptaculous]]></category>

		<category><![CDATA[Prototype]]></category>

		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://ajaxorized.com/image-transition-manager/</guid>
		<description><![CDATA[Ajaxorized proudly presents... the Image Transition Manager. The Image Transition Manager is a javascript library based on scriptaculous and  prototype. It supports several image transitions, such as fading,  appearing, sliding, growing and shrinking and more to come.
While working on a project for a customer, I needed to create a kind of slideshow-like effect [...]]]></description>
			<content:encoded><![CDATA[<p>Ajaxorized proudly presents... the <a href="http://ajaxorized.com/projects/image-transition-manager-image-transitions-with-scriptaculous/" title="Image Transition Manager">Image Transition Manager</a>. The Image Transition Manager is a javascript library based on scriptaculous and  prototype. It supports several image transitions, such as <em>fading</em>,  <em>appearing</em>, <em>sliding</em>, <em>growing</em> and <em>shrinking</em> and more to come.</p>
<p>While working on a project for a customer, I needed to create a kind of slideshow-like effect for presenting several photos of products. When I started out making this 'effect', I found out that I could use this for much more other projects than just this single one. That is what triggered me to create a nice class out of it, so I could easily implement it into my other projects. After showing my first version to Willem, he did some of his magic and extended my class with some other nifty image transitions and functionalities. That is how our Image Transition Manager was born.</p>
<p> <a href="http://ajaxorized.com/the-image-transition-manager/#more-24" class="more-link">(more...)</a></p>

Add to: <span class="obsocialbookmarker"><a href="http://del.icio.us/post?url=http%3A%2F%2Fajaxorized.com%2Fthe-image-transition-manager%2F&amp;title=The+Image+Transition+Manager" target="_blank" title="Save to del.icio.us"> <img src="http://ajaxorized.com/wp-content/plugins/social/del.jpg" width="16" height="16" alt="del.icio.us"/></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fajaxorized.com%2Fthe-image-transition-manager%2F&amp;title=The+Image+Transition+Manager" target="_blank" title="Save to Reddit"> <img src="http://reddit.com/favicon.ico" width="16" height="16" alt="Reddit"/></a>
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fajaxorized.com%2Fthe-image-transition-manager%2F&amp;title=The+Image+Transition+Manager" target="_blank" title="Slashdot It!"> <img src="http://slashdot.org/favicon.ico" width="16" height="16" alt="Slashdot"/></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fajaxorized.com%2Fthe-image-transition-manager%2F&amp;title=The+Image+Transition+Manager" target="_blank" title="Digg This Post!"> <img src="http://digg.com/favicon.ico" width="16" height="16" alt="Digg"/></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fajaxorized.com%2Fthe-image-transition-manager%2F"" target="_blank" title="Share on Facebook!"> <img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="Facebook"/></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fajaxorized.com%2Fthe-image-transition-manager%2F" target="_blank" title="Add to my Technorati Favorites!"> <img src="http://technorati.com/favicon.ico" width="16" height="16" alt="Technorati"/></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fajaxorized.com%2Fthe-image-transition-manager%2F&amp;title=The+Image+Transition+Manager" target="_blank" title="Add to my Google Bookmarks!"> <img src="http://www.google.com/favicon.ico" width="16" height="16" alt="Google"/></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fajaxorized.com%2Fthe-image-transition-manager%2F&amp;title=The+Image+Transition+Manager" target="_blank" title="Stumble it!"> <img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="StumbleUpon"/></a>
<a href="https://favorites.live.com/quickadd.aspx?marklet=1&mkt=en-us&url=http%3A%2F%2Fajaxorized.com%2Fthe-image-transition-manager%2F&title=The+Image+Transition+Manager&top=1" target="_blank" title="Add to Windows Live!"> <img src="http://favorites.live.com/favicon.ico" width="16" height="16" alt="Windows Live"/></a>
<a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fajaxorized.com%2Fthe-image-transition-manager%2F&t=The+Image+Transition+Manager" target="_blank" title="Add to Yahoo!"> <img src="http://myweb2.search.yahoo.com/favicon.ico" width="16" height="16" alt="Yahoo"/></a></span>]]></content:encoded>
			<wfw:commentRss>http://ajaxorized.com/the-image-transition-manager/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Multiple Upload Solution; Using Javascript, Flash and PHP</title>
		<link>http://ajaxorized.com/multiple-upload-solution-using-javascript-flash-and-php/</link>
		<comments>http://ajaxorized.com/multiple-upload-solution-using-javascript-flash-and-php/#comments</comments>
		<pubDate>Fri, 19 Oct 2007 18:17:54 +0000</pubDate>
		<dc:creator>martijn</dc:creator>
		
		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Flash]]></category>

		<category><![CDATA[Actionscript]]></category>

		<guid isPermaLink="false">http://ajaxorized.com/?p=20</guid>
		<description><![CDATA[Thanks for the introduction Willem and hi all! Willem asked me to write some posts on additional topics like Flash, Actionscript and so on. I hope you will enjoy some of my findings, codes, tips or stories.
For my first contribution i'd like to start sharing a script i wrote a few months ago.
A problem i [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks for the introduction Willem and hi all! Willem asked me to write some posts on additional topics like Flash, Actionscript and so on. I hope you will enjoy some of my findings, codes, tips or stories.</p>
<p>For my first contribution i'd like to start sharing a script i wrote a few months ago.</p>
<p>A problem i often encouter is that people, often customers, would like to upload multiple files all together, instead of, what you often see, one file at the time. Of course a very simple solution is to put multiple HTML upload fields on a page, but obviously we could think of a better solution. There are many alternatives on the internet, but most of them aren't customizable and as a real webdeveloper, i would like to create my own solution of course. That is why i created a solution combining three popular webtechnologies; Javascript, Flash and PHP; Javascript constrols the visual aspects, while Flash in combination with PHP handles the upload process.</p>
<p>Since Flash 8, the possibility to communicate between Flash and Javascript is improved, so you can communicate easily using the Flash's <a href="http://livedocs.adobe.com/flash/8/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Parts&amp;file=00002200.html" target="_blank">ExternalInterface API</a>. With this you can call javascript functions from Actionscript and pass any number of arguments of any data type and vice versa!</p>
<p>To see a working example of my multiple upload solution, click <a href="http://www.martijndekuijper.nl/multiple-upload/" title="Multiple Upload" target="_blank">here</a> (no files will be actually uploaded).</p>
<p>I also helped willem out with the design and think we came up with a nice look for this weblog. As you can see at the top we included a menu and added the page 'projects'. I hope we will be able to give this page some content and if i improved my multiple upload script, i will add this as a project. Untill then, you can download the source of this first version <a href="http://www.martijndekuijper.nl/multiple-upload/ajaxorized_multiple_upload.rar">here</a>.<br />
<!--digg--></p>

Add to: <span class="obsocialbookmarker"><a href="http://del.icio.us/post?url=http%3A%2F%2Fajaxorized.com%2Fmultiple-upload-solution-using-javascript-flash-and-php%2F&amp;title=Multiple+Upload+Solution%3B+Using+Javascript%2C+Flash+and+PHP" target="_blank" title="Save to del.icio.us"> <img src="http://ajaxorized.com/wp-content/plugins/social/del.jpg" width="16" height="16" alt="del.icio.us"/></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fajaxorized.com%2Fmultiple-upload-solution-using-javascript-flash-and-php%2F&amp;title=Multiple+Upload+Solution%3B+Using+Javascript%2C+Flash+and+PHP" target="_blank" title="Save to Reddit"> <img src="http://reddit.com/favicon.ico" width="16" height="16" alt="Reddit"/></a>
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fajaxorized.com%2Fmultiple-upload-solution-using-javascript-flash-and-php%2F&amp;title=Multiple+Upload+Solution%3B+Using+Javascript%2C+Flash+and+PHP" target="_blank" title="Slashdot It!"> <img src="http://slashdot.org/favicon.ico" width="16" height="16" alt="Slashdot"/></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fajaxorized.com%2Fmultiple-upload-solution-using-javascript-flash-and-php%2F&amp;title=Multiple+Upload+Solution%3B+Using+Javascript%2C+Flash+and+PHP" target="_blank" title="Digg This Post!"> <img src="http://digg.com/favicon.ico" width="16" height="16" alt="Digg"/></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fajaxorized.com%2Fmultiple-upload-solution-using-javascript-flash-and-php%2F"" target="_blank" title="Share on Facebook!"> <img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="Facebook"/></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fajaxorized.com%2Fmultiple-upload-solution-using-javascript-flash-and-php%2F" target="_blank" title="Add to my Technorati Favorites!"> <img src="http://technorati.com/favicon.ico" width="16" height="16" alt="Technorati"/></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fajaxorized.com%2Fmultiple-upload-solution-using-javascript-flash-and-php%2F&amp;title=Multiple+Upload+Solution%3B+Using+Javascript%2C+Flash+and+PHP" target="_blank" title="Add to my Google Bookmarks!"> <img src="http://www.google.com/favicon.ico" width="16" height="16" alt="Google"/></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fajaxorized.com%2Fmultiple-upload-solution-using-javascript-flash-and-php%2F&amp;title=Multiple+Upload+Solution%3B+Using+Javascript%2C+Flash+and+PHP" target="_blank" title="Stumble it!"> <img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="StumbleUpon"/></a>
<a href="https://favorites.live.com/quickadd.aspx?marklet=1&mkt=en-us&url=http%3A%2F%2Fajaxorized.com%2Fmultiple-upload-solution-using-javascript-flash-and-php%2F&title=Multiple+Upload+Solution%3B+Using+Javascript%2C+Flash+and+PHP&top=1" target="_blank" title="Add to Windows Live!"> <img src="http://favorites.live.com/favicon.ico" width="16" height="16" alt="Windows Live"/></a>
<a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fajaxorized.com%2Fmultiple-upload-solution-using-javascript-flash-and-php%2F&t=Multiple+Upload+Solution%3B+Using+Javascript%2C+Flash+and+PHP" target="_blank" title="Add to Yahoo!"> <img src="http://myweb2.search.yahoo.com/favicon.ico" width="16" height="16" alt="Yahoo"/></a></span>]]></content:encoded>
			<wfw:commentRss>http://ajaxorized.com/multiple-upload-solution-using-javascript-flash-and-php/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Realtime email validation with scriptaculous</title>
		<link>http://ajaxorized.com/realtime-email-validation-with-scriptaculous/</link>
		<comments>http://ajaxorized.com/realtime-email-validation-with-scriptaculous/#comments</comments>
		<pubDate>Thu, 18 Oct 2007 10:42:10 +0000</pubDate>
		<dc:creator>Willem</dc:creator>
		
		<category><![CDATA[Ajaxorized]]></category>

		<category><![CDATA[Scriptaculous]]></category>

		<category><![CDATA[Prototype]]></category>

		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://ajaxorized.com/?p=21</guid>
		<description><![CDATA[When adding this tiny javascript to the onkeyup event of your inputbox, the border will turn green when the email address. It uses scriptaculous' morph function to perform this transformation. See a demo

Add to:  
 
 
 
]]></description>
			<content:encoded><![CDATA[<p>When adding this tiny javascript to the onkeyup event of your inputbox, the border will turn green when the email address. It uses <a href="http://ajaxian.com/archives/scriptaculous-17-beta-now-with-morphing" target = "_blank">scriptaculous' morph function</a> to perform this transformation. <a href="http://ajaxorized.com/examples/scriptaculous/email.html"  target = "_blank">See a demo</a><br />
 <a href="http://ajaxorized.com/realtime-email-validation-with-scriptaculous/#more-21" class="more-link">(more...)</a></p>

Add to: <span class="obsocialbookmarker"><a href="http://del.icio.us/post?url=http%3A%2F%2Fajaxorized.com%2Frealtime-email-validation-with-scriptaculous%2F&amp;title=Realtime+email+validation+with+scriptaculous" target="_blank" title="Save to del.icio.us"> <img src="http://ajaxorized.com/wp-content/plugins/social/del.jpg" width="16" height="16" alt="del.icio.us"/></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fajaxorized.com%2Frealtime-email-validation-with-scriptaculous%2F&amp;title=Realtime+email+validation+with+scriptaculous" target="_blank" title="Save to Reddit"> <img src="http://reddit.com/favicon.ico" width="16" height="16" alt="Reddit"/></a>
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fajaxorized.com%2Frealtime-email-validation-with-scriptaculous%2F&amp;title=Realtime+email+validation+with+scriptaculous" target="_blank" title="Slashdot It!"> <img src="http://slashdot.org/favicon.ico" width="16" height="16" alt="Slashdot"/></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fajaxorized.com%2Frealtime-email-validation-with-scriptaculous%2F&amp;title=Realtime+email+validation+with+scriptaculous" target="_blank" title="Digg This Post!"> <img src="http://digg.com/favicon.ico" width="16" height="16" alt="Digg"/></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fajaxorized.com%2Frealtime-email-validation-with-scriptaculous%2F"" target="_blank" title="Share on Facebook!"> <img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="Facebook"/></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fajaxorized.com%2Frealtime-email-validation-with-scriptaculous%2F" target="_blank" title="Add to my Technorati Favorites!"> <img src="http://technorati.com/favicon.ico" width="16" height="16" alt="Technorati"/></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fajaxorized.com%2Frealtime-email-validation-with-scriptaculous%2F&amp;title=Realtime+email+validation+with+scriptaculous" target="_blank" title="Add to my Google Bookmarks!"> <img src="http://www.google.com/favicon.ico" width="16" height="16" alt="Google"/></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fajaxorized.com%2Frealtime-email-validation-with-scriptaculous%2F&amp;title=Realtime+email+validation+with+scriptaculous" target="_blank" title="Stumble it!"> <img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="StumbleUpon"/></a>
<a href="https://favorites.live.com/quickadd.aspx?marklet=1&mkt=en-us&url=http%3A%2F%2Fajaxorized.com%2Frealtime-email-validation-with-scriptaculous%2F&title=Realtime+email+validation+with+scriptaculous&top=1" target="_blank" title="Add to Windows Live!"> <img src="http://favorites.live.com/favicon.ico" width="16" height="16" alt="Windows Live"/></a>
<a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fajaxorized.com%2Frealtime-email-validation-with-scriptaculous%2F&t=Realtime+email+validation+with+scriptaculous" target="_blank" title="Add to Yahoo!"> <img src="http://myweb2.search.yahoo.com/favicon.ico" width="16" height="16" alt="Yahoo"/></a></span>]]></content:encoded>
			<wfw:commentRss>http://ajaxorized.com/realtime-email-validation-with-scriptaculous/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Martijn joins the team!</title>
		<link>http://ajaxorized.com/martijn-joins-the-team/</link>
		<comments>http://ajaxorized.com/martijn-joins-the-team/#comments</comments>
		<pubDate>Thu, 18 Oct 2007 09:52:14 +0000</pubDate>
		<dc:creator>Willem</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ajaxorized.com/?p=19</guid>
		<description><![CDATA[From now, the number of ajaxorized team members is upgraded to 2, since Martijn joins the team. Martijn and I met in our universities masters program and share the same passion for informatics, web development, javascript, PHP and, of course, black coffee. So, a warm welcome to Martijn!

Add to:  
 
 
 
]]></description>
			<content:encoded><![CDATA[<p>From now, the number of ajaxorized team members is upgraded to 2, since Martijn joins the team. Martijn and I met in our universities masters program and share the same passion for informatics, web development, javascript, PHP and, of course, black coffee. So, a warm welcome to Martijn!</p>

Add to: <span class="obsocialbookmarker"><a href="http://del.icio.us/post?url=http%3A%2F%2Fajaxorized.com%2Fmartijn-joins-the-team%2F&amp;title=Martijn+joins+the+team%21" target="_blank" title="Save to del.icio.us"> <img src="http://ajaxorized.com/wp-content/plugins/social/del.jpg" width="16" height="16" alt="del.icio.us"/></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fajaxorized.com%2Fmartijn-joins-the-team%2F&amp;title=Martijn+joins+the+team%21" target="_blank" title="Save to Reddit"> <img src="http://reddit.com/favicon.ico" width="16" height="16" alt="Reddit"/></a>
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fajaxorized.com%2Fmartijn-joins-the-team%2F&amp;title=Martijn+joins+the+team%21" target="_blank" title="Slashdot It!"> <img src="http://slashdot.org/favicon.ico" width="16" height="16" alt="Slashdot"/></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fajaxorized.com%2Fmartijn-joins-the-team%2F&amp;title=Martijn+joins+the+team%21" target="_blank" title="Digg This Post!"> <img src="http://digg.com/favicon.ico" width="16" height="16" alt="Digg"/></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fajaxorized.com%2Fmartijn-joins-the-team%2F"" target="_blank" title="Share on Facebook!"> <img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="Facebook"/></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fajaxorized.com%2Fmartijn-joins-the-team%2F" target="_blank" title="Add to my Technorati Favorites!"> <img src="http://technorati.com/favicon.ico" width="16" height="16" alt="Technorati"/></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fajaxorized.com%2Fmartijn-joins-the-team%2F&amp;title=Martijn+joins+the+team%21" target="_blank" title="Add to my Google Bookmarks!"> <img src="http://www.google.com/favicon.ico" width="16" height="16" alt="Google"/></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fajaxorized.com%2Fmartijn-joins-the-team%2F&amp;title=Martijn+joins+the+team%21" target="_blank" title="Stumble it!"> <img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="StumbleUpon"/></a>
<a href="https://favorites.live.com/quickadd.aspx?marklet=1&mkt=en-us&url=http%3A%2F%2Fajaxorized.com%2Fmartijn-joins-the-team%2F&title=Martijn+joins+the+team%21&top=1" target="_blank" title="Add to Windows Live!"> <img src="http://favorites.live.com/favicon.ico" width="16" height="16" alt="Windows Live"/></a>
<a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fajaxorized.com%2Fmartijn-joins-the-team%2F&t=Martijn+joins+the+team%21" target="_blank" title="Add to Yahoo!"> <img src="http://myweb2.search.yahoo.com/favicon.ico" width="16" height="16" alt="Yahoo"/></a></span>]]></content:encoded>
			<wfw:commentRss>http://ajaxorized.com/martijn-joins-the-team/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
