<?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>alex barberis &#187; Uncategorized</title>
	<atom:link href="http://alexbarberis.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://alexbarberis.com</link>
	<description>my personal "blog"</description>
	<lastBuildDate>Wed, 26 May 2010 18:23:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>jQuery Basics</title>
		<link>http://alexbarberis.com/2009/02/22/jquery-basics/</link>
		<comments>http://alexbarberis.com/2009/02/22/jquery-basics/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 05:22:53 +0000</pubDate>
		<dc:creator>Alex Barberis</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://alexbarberis.com/?p=156</guid>
		<description><![CDATA[So here is a quick post on some jQuery basics. I&#8217;ve found this script library extremely useful lately. It&#8217;s saved me tons of time and I wished I had adopted it sooner. &#8220;Write less, do more&#8221; is for real. I&#8217;m a believer!
The first thing jQuery offers is the document ready function. This is great because [...]]]></description>
			<content:encoded><![CDATA[<p>So here is a quick post on some jQuery basics. I&#8217;ve found this script library extremely useful lately. It&#8217;s saved me tons of time and I wished I had adopted it sooner. &#8220;Write less, do more&#8221; is for real. I&#8217;m a believer!</p>
<p>The first thing jQuery offers is the document ready function. This is great because your code will not execute until the DOM is truly ready. Here you can manipulate any elements or execute code. This is much more efficient than using the standard onload event.<br />
[javascript]$(document).ready(function() {<br />
   // do stuff when DOM is ready<br />
});[/javascript]<br />
Now you need to interact with an element. This is quite easy. Let&#8217;s say we had a link we need to manipulate.</p>
<p>[javascript]&lt;a id=&#8221;link&#8221;&gt;Click Me!&lt;/a&gt;<br />
[/javascript]</p>
<p>Any time that you need to reference an element you simply use $(&#8220;#id&#8221;). So here are some quick things that we can do.</p>
<p>Change the onclick function:<br />
[javascript]$(&#8220;#link&#8221;).click(function(){<br />
   alert(&#8220;You clicked on the link!&#8221;);<br />
});[/javascript]<br />
Append content to the link:<br />
[javascript]$(&#8220;#link&#8221;).append(&#8220;New text inside the link&#8221;);[/javascript]</p>
<blockquote><p>Note: When you are checking for the existence or an element do <span style="color: #ff0000;">NOT</span> do the following:<br />
[javascript]if($(&#8220;#link&#8221;)) { //object exist };[/javascript]<br />
This is wrong as each time you use the $(&#8220;#id&#8221;) convention you are asking for a jQuery object so you will get one even if the element is not there.</p>
<p>To correctly check for the existence of an element use the following code:<br />
[javascript]if ($(&#8220;#link&#8221;).length &gt; 0 ) { //now we found it } [/javascript]
</p></blockquote>
<p>You can see how easy it is to start manipulating things with this easy to use syntax. This is just the beginning . This is a very powerful framework that also has tons of third party plugins for many specific needs.</p>
<p>For more information on jQuery visit the following links. There is plenty of stuff on there to get anyone started.</p>
<p><a href="http://docs.jquery.com/Main_Page" target="_blank">jQuery Documentation</a></p>
<p><a href="http://plugins.jquery.com/" target="_blank">jQuery Plugin Repository</a></p>
<p>More to come when I have time!</p>
]]></content:encoded>
			<wfw:commentRss>http://alexbarberis.com/2009/02/22/jquery-basics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dogs &gt; Cats</title>
		<link>http://alexbarberis.com/2009/02/17/dogs-cats/</link>
		<comments>http://alexbarberis.com/2009/02/17/dogs-cats/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 20:20:04 +0000</pubDate>
		<dc:creator>Alex Barberis</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://alexbarberis.com/?p=146</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><object width="400" height="302" data="http://vimeo.com/moogaloop.swf?clip_id=3256981&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" type="application/x-shockwave-flash"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=3256981&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://alexbarberis.com/2009/02/17/dogs-cats/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The internet in 1969</title>
		<link>http://alexbarberis.com/2009/01/29/the-internet-in-1969/</link>
		<comments>http://alexbarberis.com/2009/01/29/the-internet-in-1969/#comments</comments>
		<pubDate>Thu, 29 Jan 2009 04:26:40 +0000</pubDate>
		<dc:creator>Alex Barberis</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.alexbarberis.com/2009/01/29/the-internet-in-1969/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><object width="400" height="336" data="http://www.youtube.com/v/Y0pPfyYtiBc&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1" type="application/x-shockwave-flash"><param name="wmode" value="transparent" /><param name="allowFullScreen" value="true" /><param name="src" value="http://www.youtube.com/v/Y0pPfyYtiBc&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://alexbarberis.com/2009/01/29/the-internet-in-1969/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Panthers ftw</title>
		<link>http://alexbarberis.com/2009/01/28/panthers-ftw/</link>
		<comments>http://alexbarberis.com/2009/01/28/panthers-ftw/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 05:06:15 +0000</pubDate>
		<dc:creator>Alex Barberis</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.alexbarberis.com/2009/01/28/panthers-ftw/</guid>
		<description><![CDATA[Tonight I got to go to the Panther/Flyers game after work with a buddy. It&#8217;s been a while since I&#8217;ve been to a hockey game. It&#8217;s the only sport that ever caught my attention. We had some really kickass seats and the game was great. The Panthers won 3-2. It got pretty close at the [...]]]></description>
			<content:encoded><![CDATA[<p>Tonight I got to go to the Panther/Flyers game after work with a buddy. It&#8217;s been a while since I&#8217;ve been to a hockey game. It&#8217;s the only sport that ever caught my attention. We had some really kickass seats and the game was great. The Panthers won 3-2. It got pretty close at the end. I definetly need to make it out to more hockey games&#8230;</p>
<p align=center><a href="http://www.alexbarberis.com/wp-content/uploads/2009/01/l-640-480-9a421be1-37d1-4d02-a884-c0c95eaecd30.jpeg"><img src="http://www.alexbarberis.com/wp-content/uploads/2009/01/l-640-480-9a421be1-37d1-4d02-a884-c0c95eaecd30.jpeg" alt="" width="300" height="225" class="alignnone size-full wp-image-364" /></a> <a href="http://www.alexbarberis.com/wp-content/uploads/2009/01/l-640-480-183c58fa-ef26-4e4d-b3f5-7d03c0fb1e66.jpeg"><img src="http://www.alexbarberis.com/wp-content/uploads/2009/01/l-640-480-183c58fa-ef26-4e4d-b3f5-7d03c0fb1e66.jpeg" alt="" width="300" height="225" class="alignnone size-full wp-image-364" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://alexbarberis.com/2009/01/28/panthers-ftw/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://alexbarberis.com/2009/01/27/102/</link>
		<comments>http://alexbarberis.com/2009/01/27/102/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 04:44:09 +0000</pubDate>
		<dc:creator>Alex Barberis</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.alexbarberis.com/?p=102</guid>
		<description><![CDATA[Ray Luzier has to be one of the most underrated drummers ever. Nobody knows who he is. I can&#8217;t believe Korn has this kind of talent. No offense to Korn fans but I just don&#8217;t think it&#8217;s the best place for him to display his talent. I got to see him with Army of Anyone [...]]]></description>
			<content:encoded><![CDATA[<p>Ray Luzier has to be one of the most underrated drummers ever. Nobody knows who he is. I can&#8217;t believe Korn has this kind of talent. No offense to Korn fans but I just don&#8217;t think it&#8217;s the best place for him to display his talent. I got to see him with Army of Anyone live. This guy is the real deal.</p>
<p style="text-align: center;"><object width="400" height="336" data="http://www.youtube.com/v/CAi3pjAQPvY&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1" type="application/x-shockwave-flash"><param name="wmode" value="transparent" /><param name="allowFullScreen" value="true" /><param name="src" value="http://www.youtube.com/v/CAi3pjAQPvY&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://alexbarberis.com/2009/01/27/102/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>They got the skillz</title>
		<link>http://alexbarberis.com/2009/01/23/they-got-the-skillz/</link>
		<comments>http://alexbarberis.com/2009/01/23/they-got-the-skillz/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 04:36:14 +0000</pubDate>
		<dc:creator>Alex Barberis</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.alexbarberis.com/2009/01/23/they-got-the-skillz/</guid>
		<description><![CDATA[Do I really need to comment on this?
 

]]></description>
			<content:encoded><![CDATA[<p>Do I really need to comment on this?</p>
<p align="center"> </p>
<p style="text-align: center;"><object width="400" height="336" data="http://www.youtube.com/v/9cadbYIzhqQ&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1" type="application/x-shockwave-flash"><param name="wmode" value="transparent" /><param name="allowFullScreen" value="true" /><param name="src" value="http://www.youtube.com/v/9cadbYIzhqQ&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://alexbarberis.com/2009/01/23/they-got-the-skillz/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Overload</title>
		<link>http://alexbarberis.com/2008/09/25/javascript-overload/</link>
		<comments>http://alexbarberis.com/2008/09/25/javascript-overload/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 04:13:57 +0000</pubDate>
		<dc:creator>Alex Barberis</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[webdev]]></category>

		<guid isPermaLink="false">http://www.alexbarberis.com/?p=91</guid>
		<description><![CDATA[I came across this great article at Smashing Magazine with links to a bunch of javascript controls. There are many great implementations of MooTools and jQuery. You can see the article.
I&#8217;m really into all the Mac-like script effects people come up with. Here are some of my favorites:
Slider Gallery (looks like the top portion of apple.com [...]]]></description>
			<content:encoded><![CDATA[<p>I came across this great <a href="http://www.smashingmagazine.com/2008/09/11/75-really-useful-javascript-techniques/">article</a> at <a href="http://www.smashingmagazine.com/">Smashing Magazine</a> with links to a bunch of javascript controls. There are many great implementations of <a href="http://mootools.net/">MooTools</a> and <a href="http://www.jquery.com/&lt;/a&gt;" class="broken_link" >jQuery</a>. You can see the article.</p>
<p>I&#8217;m really into all the Mac-like script effects people come up with. Here are some of my favorites:</p>
<p><a href="http://jqueryfordesigners.com/slider-gallery/">Slider Gallery</a> (looks like the top portion of apple.com that lets you scroll through product lines)</p>
<p><a href="http://safalra.com/web-design/javascript/mac-style-dock/">OS X Style Dock</a></p>
<p>It&#8217;s amazing how script has transformed the web so much in the last few years. I&#8217;d hate to think where we would be without it.</p>
]]></content:encoded>
			<wfw:commentRss>http://alexbarberis.com/2008/09/25/javascript-overload/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>BLAH</title>
		<link>http://alexbarberis.com/2006/11/07/blah/</link>
		<comments>http://alexbarberis.com/2006/11/07/blah/#comments</comments>
		<pubDate>Wed, 08 Nov 2006 03:27:38 +0000</pubDate>
		<dc:creator>Alex Barberis</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.alexbarberis.com/2006/11/07/blah/</guid>
		<description><![CDATA[Well I spent my vacation in bed with food poisining. I think that sums things up pretty well. Boy am I having good luck lately!
l8r
]]></description>
			<content:encoded><![CDATA[<p>Well I spent my vacation in bed with food poisining. I think that sums things up pretty well. Boy am I having good luck lately!</p>
<p>l8r</p>
]]></content:encoded>
			<wfw:commentRss>http://alexbarberis.com/2006/11/07/blah/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>1 more week!</title>
		<link>http://alexbarberis.com/2006/10/27/skype/</link>
		<comments>http://alexbarberis.com/2006/10/27/skype/#comments</comments>
		<pubDate>Fri, 27 Oct 2006 04:14:29 +0000</pubDate>
		<dc:creator>Alex Barberis</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[pinball]]></category>

		<guid isPermaLink="false">http://www.alexbarberis.com/2006/10/27/skype/</guid>
		<description><![CDATA[A few more days until I get to take a few days off and go to the annual Pinball Expo in Chicago. I&#8217;m sure anyone who reads that thinks I&#8217;m a weirdo. It&#8217;s actually really fun to hang out. I could use the few days off as the last week or so of work is [...]]]></description>
			<content:encoded><![CDATA[<p>A few more days until I get to take a few days off and go to the annual <a href="http://www.pinballexpo.net/">Pinball Expo</a> in Chicago. I&#8217;m sure anyone who reads that thinks I&#8217;m a weirdo. It&#8217;s actually really fun to hang out. I could use the few days off as the last week or so of work is really burning me out. It&#8217;s supposed to be really cold in Chicago which I&#8217;m actually looking forward to. Florida heat sucks!</p>
<p>I added a neat Skype link on the right which tells my current status and lets people annoy me! w00p</p>
]]></content:encoded>
			<wfw:commentRss>http://alexbarberis.com/2006/10/27/skype/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Hey now</title>
		<link>http://alexbarberis.com/2006/10/25/hey-now/</link>
		<comments>http://alexbarberis.com/2006/10/25/hey-now/#comments</comments>
		<pubDate>Thu, 26 Oct 2006 00:40:33 +0000</pubDate>
		<dc:creator>Alex Barberis</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.alexbarberis.com/2006/10/25/hey-now/</guid>
		<description><![CDATA[Welcome to my site. Eventually I will post something interesting on here when I have some time!
]]></description>
			<content:encoded><![CDATA[<p>Welcome to my site. Eventually I will post something interesting on here when I have some time!</p>
]]></content:encoded>
			<wfw:commentRss>http://alexbarberis.com/2006/10/25/hey-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
