<?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>Arlo Carreon</title>
	<atom:link href="http://www.arlocarreon.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.arlocarreon.com</link>
	<description>Web/Application Developer</description>
	<lastBuildDate>Sat, 20 Mar 2010 04:48:36 +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>Wordpress Tutorial &#8211; Custom Fields</title>
		<link>http://www.arlocarreon.com/blog/wordpress/wordpress-tutorial-custom-fields</link>
		<comments>http://www.arlocarreon.com/blog/wordpress/wordpress-tutorial-custom-fields#comments</comments>
		<pubDate>Sat, 20 Mar 2010 04:48:36 +0000</pubDate>
		<dc:creator>arlo</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.arlocarreon.com/?p=48</guid>
		<description><![CDATA[This is how I use my custom field.
]]></description>
			<content:encoded><![CDATA[<p>This is how I use my custom field.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.arlocarreon.com/blog/wordpress/wordpress-tutorial-custom-fields/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is JQuery?</title>
		<link>http://www.arlocarreon.com/blog/jquery/what-is-jquery</link>
		<comments>http://www.arlocarreon.com/blog/jquery/what-is-jquery#comments</comments>
		<pubDate>Sat, 18 Jul 2009 16:26:35 +0000</pubDate>
		<dc:creator>arlo</dc:creator>
				<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://mextekstudios.com/newsite/?p=24</guid>
		<description><![CDATA[For those of you who have never used JQuery before, here is a little head start.  JQuery is one of the best Javacsript libraries out on the web today.  It can be used to transverse DOM elements (HTML), animations, event handling and many many more.
JQuery is being used by many well established websites such as: [...]]]></description>
			<content:encoded><![CDATA[<p>For those of you who have never used JQuery before, here is a little head start.  JQuery is one of the best Javacsript libraries out on the web today.  It can be used to transverse DOM elements (HTML), animations, event handling and many many more.</p>
<p>JQuery is being used by many well established websites such as: DELL, Bank of America, DIGG, Google, NBC, CBS, NETFLIX and even the White House (.gov).</p>
<h3><strong>How to use it</strong></h3>
<p>First you need to download JQuery.  Then include the JQuery library in the HEAD section of your HTML code like so.</p>
<pre><code>
&lt;script type="text/javascript" src="jquery.js"&gt;&lt;/script&gt; </code></pre>
<p>OR you can always use the latest version of JQuery right off google servers.</p>
<pre><code>
&lt;script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js" type="text/javascript"&gt;&lt;/script&gt;
</code></pre>
<p>Secondly, you need to choose what type of element you would like to manipulate. For example:</p>
<pre><code>&lt;div id="error-message" style="background-color:#900; padding:15px; color:#FFF;"&gt;
        Error: You are retarded.
&lt;/div&gt;</code></pre>
<p>Now that we have our scenario, let&#8217;s see one example on how to use JQuery. When coding JQuery you will most often then not use the following template to wrap your JQuery code.</p>
<pre><code>
&lt;script type="text/javascript"&gt;
   $(document).ready(function(){

   });
&lt;/script&gt;
</code></pre>
<p>This ensures that your code will be run when the browser has finished loading the page.  Inside the template you choose your error message using it&#8217;s ID. In JQuery you use $(&#8216;#ID&#8217;) or $(&#8216;.CLASS&#8217;) to access a DOM element.</p>
<pre><code>&lt;script type="text/javascript"&gt;
   $(document).ready(function(){
      $( '#error-message' ).click();
   });
&lt;/script&gt;
</code></pre>
<p>The above code has accessed the click event handler for your DIV, now let&#8217;s make something happen.</p>
<pre><code>
&lt;script type="text/javascript"&gt;
   $(document).ready(function(){
      $( '#error-message' ).click(function(){

         $( '#error-message' ).hide();

      });

   });

&lt;/script&gt;
</code></pre>
<p>That&#8217;s all folks! Now when you click anywhere on your error message, your DIV will disappear right before your eyes.  If you are really interested in getting your feet wet with JQuery.  I would use this example and exchange &#8220;hide();&#8221; with different effects, such as sliding up/down, fading out effects (facebook), etc.</p>
<p>You can browse more JQuery effects here: <a href="http://docs.jquery.com/Effects">http://docs.jquery.com/Effects</a><br />
Soon enough I will be posting more mini-JQuery tutorials and simple things like CSS manipulation and AJAX calls.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.arlocarreon.com/blog/jquery/what-is-jquery/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is Code Igniter Framework?</title>
		<link>http://www.arlocarreon.com/blog/codeigniter/what-is-ci</link>
		<comments>http://www.arlocarreon.com/blog/codeigniter/what-is-ci#comments</comments>
		<pubDate>Fri, 10 Jul 2009 00:26:04 +0000</pubDate>
		<dc:creator>arlo</dc:creator>
				<category><![CDATA[Code Igniter]]></category>

		<guid isPermaLink="false">http://mextekstudios.com/newsite/?p=1</guid>
		<description><![CDATA[As many of you know, I am a big fan of the Code Igniter Framework.  It is very light weight and has many things to offer out of the box.  I have had the pleasure of using this framework on 3 huge projects.  I will be posting a lot more thought about the Code Igniter [...]]]></description>
			<content:encoded><![CDATA[<p>As many of you know, I am a big fan of the Code Igniter Framework.  It is very light weight and has many things to offer out of the box.  I have had the pleasure of using this framework on 3 huge projects.  I will be posting a lot more thought about the Code Igniter framework, specifically on different parts of their library.  Until then, check out these existing Code Igniter websites.</p>
<p>http://codeigniter.com/projects/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.arlocarreon.com/blog/codeigniter/what-is-ci/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
