<?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>GSaraiva&#039;s Projects &#187; jQuery.Animator</title>
	<atom:link href="http://projects.pro.br/gsaraiva/tag/jqueryanimator/feed/" rel="self" type="application/rss+xml" />
	<link>http://projects.pro.br/gsaraiva</link>
	<description>Step by step</description>
	<lastBuildDate>Tue, 01 Sep 2009 13:14:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>jQuery: jQuery.Animator</title>
		<link>http://projects.pro.br/gsaraiva/2008/05/jquery-jqueryanimator/</link>
		<comments>http://projects.pro.br/gsaraiva/2008/05/jquery-jqueryanimator/#comments</comments>
		<pubDate>Fri, 23 May 2008 11:04:24 +0000</pubDate>
		<dc:creator>Gilberto Saraiva</dc:creator>
				<category><![CDATA[articles]]></category>
		<category><![CDATA[animate]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[jQuery.Animator]]></category>

		<guid isPermaLink="false">http://gsaraiva.projects.pro.br/?p=43</guid>
		<description><![CDATA[Folks,
I wrote a plugin to make our life easy! the new jQuery.Animator.
the example:
&#60;html&#62;&#60;head&#62;&#60;title&#62;&#60;/title&#62;&#60;script type=&#34;text/javascript&#34; src=&#34;jquery-1.2.5.js&#34;&#62;&#60;/script&#62;&#60;script type=&#34;text/javascript&#34; src=&#34;jquery.animator.js&#34;&#62;&#60;/script&#62;&#60;script language=&#34;JavaScript&#34;&#62;&#60;!--&#160;&#160;function AnimateWalker&#40;Walker, GoEnd&#41;&#123;&#160;&#160;&#160;&#160;newLeft = parseInt&#40;Walker.css&#40;&#34;left&#34;&#41;&#41; + 5;&#160;&#160;&#160;&#160;if&#40;GoEnd&#41; newLeft = 400;&#160;&#160;&#160;&#160;Walker.css&#40;&#34;left&#34;, newLeft&#41;;&#160;&#160;&#160;&#160;return &#40;newLeft &#60; 400&#41;;&#160;&#160;&#125;&#160;&#160;&#160;function AnimateWalker3&#40;Walker, GoEnd&#41;&#123;&#160;&#160;&#160;&#160;// GoEnd can't be calculated, it's a infinite animation&#160;&#160;&#160;&#160;newLeft = parseInt&#40;Walker.css&#40;&#34;left&#34;&#41;&#41; + 10;&#160;&#160;&#160;&#160;if&#40;newLeft &#62; 400&#41; newLeft = 0;&#160;&#160;&#160;&#160;Walker.css&#40;&#34;left&#34;, newLeft&#41;;&#160;&#160;&#160;&#160;return true; // infinte&#160;&#160;&#125;&#160;&#160;&#160;$&#40;function&#40;&#41;&#123;&#160;&#160;&#160;&#160;$&#40;&#34;#Walker&#34;&#41;.animator&#40;10, AnimateWalker&#41;;&#160;&#160;&#160;&#160;$&#40;&#34;#Walker2&#34;&#41;.animator&#40;10, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Folks,</strong></p>
<p>I wrote a plugin to make our life easy! the new jQuery.Animator.</p>
<p>the example:<br />
<!--DEVFMTCODE--><pre class="devcodeblock" title="HTML"><div class="devcodeoverflow"><ol><li></li><li><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">html</span>&gt;</span></li><li><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">head</span>&gt;</span></li><li><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">title</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">title</span>&gt;</span></li><li><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">script</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text/javascript&quot;</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;jquery-1.2.5.js&quot;</span>&gt;</span><span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">script</span>&gt;</span></li><li><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">script</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text/javascript&quot;</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;jquery.animator.js&quot;</span>&gt;</span><span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">script</span>&gt;</span></li><li><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">script</span> <span style="color: #000066;">language</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;JavaScript&quot;</span>&gt;</span></li><li><span style="color: #339933;">&lt;!--</span></li><li>&nbsp;&nbsp;<span style="color: #003366; font-weight: bold;">function</span> AnimateWalker<span style="color: #009900;">&#40;</span>Walker<span style="color: #339933;">,</span> GoEnd<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;newLeft <span style="color: #339933;">=</span> parseInt<span style="color: #009900;">&#40;</span>Walker.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;left&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">+</span> <span style="color: #CC0000;">5</span><span style="color: #339933;">;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span>GoEnd<span style="color: #009900;">&#41;</span> newLeft <span style="color: #339933;">=</span> <span style="color: #CC0000;">400</span><span style="color: #339933;">;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;Walker.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;left&quot;</span><span style="color: #339933;">,</span> newLeft<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #000066; font-weight: bold;">return</span> <span style="color: #009900;">&#40;</span>newLeft <span style="color: #339933;">&lt;</span> 400<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li><li>&nbsp;&nbsp;<span style="color: #009900;">&#125;</span></li><li>&nbsp;</li><li>&nbsp;&nbsp;<span style="color: #003366; font-weight: bold;">function</span> AnimateWalker3<span style="color: #009900;">&#40;</span>Walker<span style="color: #339933;">,</span> GoEnd<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #006600; font-style: italic;">// GoEnd can't be calculated, it's a infinite animation</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;newLeft <span style="color: #339933;">=</span> parseInt<span style="color: #009900;">&#40;</span>Walker.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;left&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">+</span> <span style="color: #CC0000;">10</span><span style="color: #339933;">;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span>newLeft <span style="color: #339933;">&gt;</span> 400<span style="color: #009900;">&#41;</span> newLeft <span style="color: #339933;">=</span> <span style="color: #CC0000;">0</span><span style="color: #339933;">;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;Walker.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;left&quot;</span><span style="color: #339933;">,</span> newLeft<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #000066; font-weight: bold;">return</span> <span style="color: #003366; font-weight: bold;">true</span><span style="color: #339933;">;</span> <span style="color: #006600; font-style: italic;">// infinte</span></li><li>&nbsp;&nbsp;<span style="color: #009900;">&#125;</span></li><li>&nbsp;</li><li>&nbsp;&nbsp;$<span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#Walker&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">animator</span><span style="color: #009900;">&#40;</span>10<span style="color: #339933;">,</span> AnimateWalker<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#Walker2&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">animator</span><span style="color: #009900;">&#40;</span>10<span style="color: #339933;">,</span> AnimateWalker<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#Walker3&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">animator</span><span style="color: #009900;">&#40;</span>10<span style="color: #339933;">,</span> AnimateWalker3<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li><li>&nbsp;&nbsp;<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li><li><span style="color: #006600; font-style: italic;">//--&gt;</span></li><li><span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">script</span>&gt;</span></li><li><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">body</span>&gt;</span></li><li><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Walker&quot;</span> <span style="color: #000066;">style</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;position:relative;left:0;width:100px;height:50px;background:#000;color:#fff&quot;</span>&gt;</span>Animation Test<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;</span></li><li><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Walker2&quot;</span> <span style="color: #000066;">style</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;position:relative;left:50;width:100px;height:50px;background:#0F0;color:#fff&quot;</span>&gt;</span>Animation Test<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;</span></li><li><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Walker3&quot;</span> <span style="color: #000066;">style</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;position:relative;left:100;width:100px;height:50px;background:#00F;color:#fff&quot;</span>&gt;</span>Animation Test<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;</span></li><li><span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">body</span>&gt;</span></li><li><span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">html</span>&gt;</span></li><li></li></ol></div></pre><!--END_DEVFMTCODE--></p>
<p>The effect will be like this:<br />
<script language="JavaScript">
<!--
  function AnimateWalker(Walker, GoEnd){
    newLeft = parseInt(Walker.css("left")) + 5;
    if(GoEnd) newLeft = 400;
    Walker.css("left", newLeft);
    return (newLeft < 400);
  }
  
  function AnimateWalker3(Walker, GoEnd){
    // GoEnd can't be calculated, it's a infinite animation
    newLeft = parseInt(Walker.css("left")) + 10;
    if(newLeft > 400) newLeft = 0;
    Walker.css("left", newLeft);
    return true; // infinte
  }

  $(function(){
    $("#Walker").animator(10, AnimateWalker);
    $("#Walker2").animator(10, AnimateWalker);
    $("#Walker3").animator(10, AnimateWalker3);
  });
//-->
</script></p>
<div id="Walker" style="position:relative;left:0;width:100px;height:50px;background:#000;color:#fff">Animation Test</div>
<div id="Walker2" style="position:relative;left:50;width:100px;height:50px;background:#0F0;color:#fff">Animation Test</div>
<div id="Walker3" style="position:relative;left:100;width:100px;height:50px;background:#00F;color:#fff">Animation Test</div>
<p>Crazzy uhm?!</p>
<p><a href="http://gsaraiva.projects.pro.br/?page_id=44">jQuery.Animator plugin page</a></p>
<p>Hugs for all</p>
]]></content:encoded>
			<wfw:commentRss>http://projects.pro.br/gsaraiva/2008/05/jquery-jqueryanimator/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>jQuery: Tudo que você precisa é o link</title>
		<link>http://projects.pro.br/gsaraiva/2008/05/jquery-tudo-que-voce-precisa-e-o-link/</link>
		<comments>http://projects.pro.br/gsaraiva/2008/05/jquery-tudo-que-voce-precisa-e-o-link/#comments</comments>
		<pubDate>Sat, 17 May 2008 14:27:49 +0000</pubDate>
		<dc:creator>Gilberto Saraiva</dc:creator>
				<category><![CDATA[articles]]></category>
		<category><![CDATA[Dimensions]]></category>
		<category><![CDATA[FlyDOM]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[jQuery Easing]]></category>
		<category><![CDATA[jQuery.Animator]]></category>
		<category><![CDATA[jQuery.Colors]]></category>
		<category><![CDATA[jQuery.CssRule]]></category>
		<category><![CDATA[jQuery.DynFace]]></category>
		<category><![CDATA[TAGs]]></category>

		<guid isPermaLink="false">http://gsaraiva.projects.pro.br/?p=21</guid>
		<description><![CDATA[Camaradas,
Como tenho visto muita gente com problemas em relação a compatibilidade e outras coisas,
decidi manter a minha estrutura em relação ao jQuery fixa, como vai funcionar?
Vou manter o link baixo fixo:
&#60;script type=&#34;text/javascript&#34; src=&#34;http://projects.pro.br/javascripts/jquery/&#34;&#62;&#60;/script&#62;
Então pra você que está tendo dificuldade com o jQuery, você precisa somente de inserir esse código html na sua página e esquecer [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Camaradas,</strong></p>
<p>Como tenho visto muita gente com problemas em relação a compatibilidade e outras coisas,<br />
decidi manter a minha estrutura em relação ao jQuery fixa, como vai funcionar?<br />
Vou manter o link baixo fixo:<br />
<!--DEVFMTCODE--><pre class="devcodeblock" title="HTML"><div class="devcodeoverflow"><ol><li><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">script</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text/javascript&quot;</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://projects.pro.br/javascripts/jquery/&quot;</span>&gt;</span><span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">script</span>&gt;</span></li></ol></div></pre><!--END_DEVFMTCODE--></p>
<p>Então pra você que está tendo dificuldade com o jQuery, você precisa somente de inserir esse código html na sua página e esquecer que ele existe, é só utilizar e ser feliz.</p>
<p>Um exemplo:<br />
<!--DEVFMTCODE--><pre class="devcodeblock" title="HTML"><div class="devcodeoverflow"><ol><li></li><li><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">html</span>&gt;</span></li><li><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">head</span>&gt;</span></li><li><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">title</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">title</span>&gt;</span></li><li><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">script</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text/javascript&quot;</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://projects.pro.br/javascripts/jquery/&quot;</span>&gt;</span><span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">script</span>&gt;</span></li><li><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">script</span> <span style="color: #000066;">language</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;JavaScript&quot;</span>&gt;</span></li></ol></div></pre><!--END_DEVFMTCODE--><!--DEVFMTCODE--><pre class="devcodeblock" title="Javascript"><div class="devcodeoverflow"><ol><li></li><li><span style="color: #339933;">&lt;!--</span></li><li>&nbsp;&nbsp;jQuery<span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>$<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;background <span style="color: #339933;">=</span> $.<span style="color: #660066;">tocolor</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#f99&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;$.<span style="color: #660066;">cssRule</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span><span style="color: #3366CC;">&quot;body&quot;</span><span style="color: #339933;">:</span><span style="color: #009900;">&#91;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #3366CC;">&quot;{background:&quot;</span> <span style="color: #339933;">+</span> background.<span style="color: #660066;">hexHTML</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">+</span> <span style="color: #3366CC;">&quot;}&quot;</span><span style="color: #339933;">,</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #009900;">&#123;</span><span style="color: #3366CC;">&quot;span&quot;</span><span style="color: #339933;">:</span> <span style="color: #009900;">&#91;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #3366CC;">&quot;color&quot;</span><span style="color: #339933;">,</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #009900;">&#123;</span><span style="color: #3366CC;">&quot;.italic&quot;</span><span style="color: #339933;">:</span> <span style="color: #009900;">&#91;</span><span style="color: #3366CC;">&quot;font-style&quot;</span><span style="color: #339933;">,</span><span style="color: #3366CC;">&quot;italic&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#125;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#125;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li><li>&nbsp;</li><li>&nbsp;&nbsp;&nbsp;&nbsp;$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;span&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;position&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;absolute&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;span&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;left&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;50%&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li><li>&nbsp;&nbsp;<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li><li><span style="color: #006600; font-style: italic;">//--&gt;</li></ol></div></pre><!--END_DEVFMTCODE--><!--DEVFMTCODE--><pre class="devcodeblock" title="HTML"><div class="devcodeoverflow"><ol><li></li><li><span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">script</span>&gt;</span></li><li><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">body</span>&gt;</span></li><li><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">span</span>&gt;</span>texto <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;italic&quot;</span>&gt;</span>italic<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">span</span>&gt;</span></li><li><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;italic&quot;</span>&gt;</span>no italic<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;</span></li><li><span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">body</span>&gt;</span></li><li><span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">html</span>&gt;</span></li><li></li></ol></div></pre><!--END_DEVFMTCODE--><br />
Veja que este código vai funcionar utilizando o jquery que estou disponibilizando.</p>
<p>Vou mante-lo atualizado, e funcional, sempre, pois utilizo ele em outros lugares. </p>
<p>Como este link possui além do jQuery alguns plugins utéis para mim e possivelmente para muitos de vocês, deixei uma forma para que você possa filtrar os plugins carregados:</p>
<p>A lista de plugins (Vou manter essa lista sempre em atualizada)</p>
<ol>
<li><strong>flydom</strong><br />
Carrega o plugin FlyDOM.</li>
<li><strong>dimensions</strong><br />
Carrrega o plugin dimensions.</li>
<li><strong>easing</strong><br />
Carrrega o plugin jQuery Easing.</li>
<li><strong>cssRule</strong><br />
Carrrega o plugin jQuery.CssRule.</li>
<li><strong>colors</strong><br />
Carrrega o plugin jQuery.Colors.</li>
<li><strong>animator</strong><br />
Carrrega o plugin jQuery.Animator.</li>
<li><strong>dynface</strong><br />
Carrrega o plugin jQuery.dynface.</li>
</ol>
<p>Então para você obter o jQuery e algum desses plugins, a sintax abaixo podera ser alterada a seu modo:<br />
<code>http://projects.pro.br/javascripts/jquery/?cssRule=1&#038;colors=1</code><br />
Essa sintax carrega o jQuery e os plugins jQuery.CssRule e o jQuery.Colors.</p>
<p>Outra maneira de não se perder com o passar do tempo é:<br />
<!--DEVFMTCODE--><pre class="devcodeblock" title="Bash"><div class="devcodeoverflow"><ol><li>http:<span style="color: #000000; font-weight: bold;">//</span>projects.pro.br<span style="color: #000000; font-weight: bold;">/</span>javascripts<span style="color: #000000; font-weight: bold;">/</span>jquery<span style="color: #000000; font-weight: bold;">/</span>?<span style="color: #007800;">flydom</span>=0<span style="color: #000000; font-weight: bold;">&amp;</span><span style="color: #007800;">dimensions</span>=0<span style="color: #000000; font-weight: bold;">&amp;</span><span style="color: #007800;">rule</span>=0<span style="color: #000000; font-weight: bold;">&amp;</span><span style="color: #007800;">easing</span>=0<span style="color: #000000; font-weight: bold;">&amp;</span><span style="color: #007800;">cssRule</span>=1<span style="color: #000000; font-weight: bold;">&amp;</span><span style="color: #007800;">colors</span>=1<span style="color: #000000; font-weight: bold;">&amp;</span><span style="color: #007800;">animator</span>=0<span style="color: #000000; font-weight: bold;">&amp;</span><span style="color: #007800;">dynface</span>=<span style="color: #000000;">0</span></li></ol></div></pre><!--END_DEVFMTCODE--><br />
Essa sintax faz a mesma coisa da anterior, mas mantem os plugins que você tem disponíveis para uso mas sem carrega-los, sendo indicado por <strong>=0</strong>.</p>
<blockquote><p>
Artigos jQuery relacionados:</p>
<li><a href="http://gsaraiva.projects.pro.br/?p=11">Como iniciar a utilização do jQuery</a></li>
<li><a href="http://gsaraiva.projects.pro.br/?p=21">Tudo que você precisa é o link</a></li>
<li><a href="http://gsaraiva.projects.pro.br/?p=19">Os Seletores (Selectors)</a></li>
<li><a href="http://gsaraiva.projects.pro.br/?p=97">Criando códigos facilitadores</a></li>
</blockquote>
<p>Abraços a todos.</p>
]]></content:encoded>
			<wfw:commentRss>http://projects.pro.br/gsaraiva/2008/05/jquery-tudo-que-voce-precisa-e-o-link/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
