<?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>cObaia.net &#187; jquery</title>
	<atom:link href="http://cobaia.net/categorias/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://cobaia.net</link>
	<description>PHP, Javascript and some code around it!</description>
	<lastBuildDate>Sun, 29 Jan 2012 03:56:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Xavante na WEB, Experimento em HTML5, CSS3, jQuery e CakePHP com Crawler usando phpQuery</title>
		<link>http://cobaia.net/2010/08/xavante-na-web-experimento-em-html5-css3-jquery-e-cakephp-com-crawler-usando-phpquery/</link>
		<comments>http://cobaia.net/2010/08/xavante-na-web-experimento-em-html5-css3-jquery-e-cakephp-com-crawler-usando-phpquery/#comments</comments>
		<pubDate>Tue, 10 Aug 2010 01:56:32 +0000</pubDate>
		<dc:creator>Vinícius Krolow</dc:creator>
				<category><![CDATA[cakephp]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programação]]></category>

		<guid isPermaLink="false">http://cobaia.net/?p=650</guid>
		<description><![CDATA[Hoje postei no ar um experimento(projeto) o Xavante na Web, para testar algumas tecnologias são elas HTML5, CSS3, Jquery e o phpQuery, junto com a integração de algumas API&#8217;s, hoje 09.08 de agosto a do twitter já está no ar, e a do Flickr e Youtube, virão em seguida visto que as duas já foram [...]]]></description>
			<content:encoded><![CDATA[<p>Hoje postei no ar um <a href="http://xavante.cobaia.net">experimento(projeto)</a> o Xavante na Web, para testar algumas tecnologias são elas HTML5, CSS3, <a href="http://jquery.com">Jquery</a> e o <a href="http://code.google.com/p/phpquery/">phpQuery</a>, junto com a integração de algumas API&#8217;s, hoje 09.08 de agosto a do twitter já está no ar, e a do Flickr e Youtube, virão em seguida visto que as duas já foram codificadas bastando o cacheamento das mesmas.</p>
<p>Para o mesmo foi gasto 3 horas de desenvolvimento, mais 1 hora de acertos que com sua publicação ficou beirando as 5 horas, usando P<a href="http://php.net">HP 5.2</a>, <a href="http://mysql.org">MySQL 5</a> e <a href="http://cakephp.org">CakePHP 1.3</a>.</p>
<p>O <a href="http://xavante.cobaia.net">Xavante na Web</a>, nada mais é que um agregador de notícias, assuntos, imagens vídeos relacionados ao Grêmio Esportivo Brasil, meu time de coração!</p>
<p>Pretendo nele ir aplicando novas técnicas, e por em prática HTML5 e CSS3 que venho estudando, para o mesmo criei uma Classe PHP para fazer a parte de <a href="http://pt.wikipedia.org/wiki/Web_crawler">Crawler</a>, que após eu ter uma suite de teste dela pretendo publicar por aqui, por hora é isso.</p>
]]></content:encoded>
			<wfw:commentRss>http://cobaia.net/2010/08/xavante-na-web-experimento-em-html5-css3-jquery-e-cakephp-com-crawler-usando-phpquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery tip: Filter the selector DOM</title>
		<link>http://cobaia.net/2010/07/jquery-tip-filter-the-selector-dom/</link>
		<comments>http://cobaia.net/2010/07/jquery-tip-filter-the-selector-dom/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 19:29:20 +0000</pubDate>
		<dc:creator>Vinícius Krolow</dc:creator>
				<category><![CDATA[jquery]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://cobaia.net/?p=628</guid>
		<description><![CDATA[That jQuery works with selectors using the patterns of CSS3 everybody know, and that apply in all dom you also know, but sometimes when you are using jquery you just want to filter a piece of DOM, not all DOM, and also apply some filter selector inside that DOM, here is the the tip: 1 [...]]]></description>
			<content:encoded><![CDATA[<p>That jQuery works with selectors using the patterns of CSS3 everybody know, and that apply in all dom you also know, but sometimes when you are using jquery you just want to filter a piece of DOM, not all DOM, and also apply some filter selector inside that DOM, here is the the tip:</p>

<div class="wp_codebox"><table><tr id="p6282"><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code" id="p628code2"><pre class="javascript" style="font-family:monospace;">&nbsp;
<span style="color: #006600; font-style: italic;">//some DOM</span>
<span style="color: #003366; font-weight: bold;">var</span> myHtml <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'&lt;div&gt;&lt;ul&gt;&lt;li&gt;1&lt;/li&gt;&lt;li&gt;2&lt;/li&gt;&lt;li&gt;sdasdasdasd&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #006600; font-style: italic;">//pass the myHtml by reference for the selector of jquery!</span>
<span style="color: #003366; font-weight: bold;">var</span> ul <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'ul'</span><span style="color: #339933;">,</span> myHtml<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>The code can explain by his self, but describing a little bit more, we have some DOM and we want use the selector just in this piece of dom, we apply our selector in the first parameter and in the second we pass our DOM and that is it! The jQuery will inspect just the DOM that you specific.</p>
]]></content:encoded>
			<wfw:commentRss>http://cobaia.net/2010/07/jquery-tip-filter-the-selector-dom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jquery plugin mouse gestures</title>
		<link>http://cobaia.net/2009/05/jquery-plugin-mouse-gestures/</link>
		<comments>http://cobaia.net/2009/05/jquery-plugin-mouse-gestures/#comments</comments>
		<pubDate>Wed, 13 May 2009 00:18:38 +0000</pubDate>
		<dc:creator>Vinícius Krolow</dc:creator>
				<category><![CDATA[jquery]]></category>
		<category><![CDATA[programação]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://cobaia.net/?p=542</guid>
		<description><![CDATA[Muito legal o plugin de movimentos de mouse com Jquery, abre possibilidade de gerar grandes resultados com o mesmo você pode conferir um demo aqui. E conhecer mais sobre ele aqui.]]></description>
			<content:encoded><![CDATA[<p>Muito legal o plugin de movimentos de mouse com Jquery, abre possibilidade de gerar grandes resultados com o mesmo você pode conferir um demo <a href="http://random.friggeri.net/jquery-gestures/">aqui</a>.</p>
<p>E conhecer mais sobre ele <a href="http://friggeri.net/blog/2008/12/21/jquery-gestures">aqui</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://cobaia.net/2009/05/jquery-plugin-mouse-gestures/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>jQuery abrir links em nova janela</title>
		<link>http://cobaia.net/2009/02/jquery-abrir-links-em-nova-janela/</link>
		<comments>http://cobaia.net/2009/02/jquery-abrir-links-em-nova-janela/#comments</comments>
		<pubDate>Sat, 14 Feb 2009 01:13:20 +0000</pubDate>
		<dc:creator>Vinícius Krolow</dc:creator>
				<category><![CDATA[jquery]]></category>
		<category><![CDATA[programação]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://cobaia.net/?p=455</guid>
		<description><![CDATA[Precisava abrir links em nova janela, como grande parte sabe o atributo target, foi abolido do XHMTL strict, pois o usuário tem de decidir se quer ou não abrir em nova janela, porém várias vezes, necessitamos forçar o usuário ir para outra janela, pois se trata de um link interno, a solução para isso é [...]]]></description>
			<content:encoded><![CDATA[<p>Precisava abrir links em nova janela, como grande parte sabe o atributo target, foi abolido do XHMTL strict, pois o usuário tem de decidir se quer ou não abrir em nova janela, porém várias vezes, necessitamos forçar o usuário ir para outra janela, pois se trata de um link interno, a solução para isso é com javascript, e existe diversas formas, com jQuery foi fácil fazer o mesmo.</p>

<div class="wp_codebox"><table><tr id="p4555"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
</pre></td><td class="code" id="p455code5"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><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>
		$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'a[rel=external]'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">click</span><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>
			<span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">oldHref</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
				<span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">oldHref</span> <span style="color: #339933;">=</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">href</span><span style="color: #339933;">;</span>
				<span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">href</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">'#'</span><span style="color: #339933;">;</span>
			<span style="color: #009900;">&#125;</span>
			window.<span style="color: #000066;">open</span><span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">oldHref</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>ou</p>
<p><code>Solução enviada por: Diego Rocha</code></p>

<div class="wp_codebox"><table><tr id="p4556"><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code" id="p455code6"><pre class="javascript" style="font-family:monospace;">$<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>
   $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'a[rel~=external]'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">attr</span><span style="color: #009900;">&#40;</span>’target’<span style="color: #339933;">,</span><span style="color: #3366CC;">'_blank’);
});</span></pre></td></tr></table></div>

<p>Agora todos os links que tiver o atributo <code>rel="external"</code> irá abrir em uma nova janela.</p>
]]></content:encoded>
			<wfw:commentRss>http://cobaia.net/2009/02/jquery-abrir-links-em-nova-janela/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Jquery de cara nova</title>
		<link>http://cobaia.net/2008/08/jquery-de-cara-nova/</link>
		<comments>http://cobaia.net/2008/08/jquery-de-cara-nova/#comments</comments>
		<pubDate>Fri, 29 Aug 2008 21:04:41 +0000</pubDate>
		<dc:creator>Vinícius Krolow</dc:creator>
				<category><![CDATA[jquery]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://cobaia.net/?p=131</guid>
		<description><![CDATA[jQuery como novas funcionalidades? Não de site novo, que é bem bonito por sinal! Não sabe o que é jQuery? Trabalha com Javascript? Se a resposta é sim ta esperando o que para ir no site, baixar a biblioteca de javascript JavaScript e usar e abusar de tudo que ele pode te oferecer.]]></description>
			<content:encoded><![CDATA[<p><a title="Jquery" href="http://jquery.com">jQuery</a> como novas funcionalidades? Não de site novo, que é bem bonito por sinal!</p>
<div id="attachment_132" class="wp-caption aligncenter" style="width: 310px"><a href="http://jquery.com"><img class="size-medium wp-image-132" title="Jquery" src="http://cobaia.net/wp-content/uploads/2008/08/newsite_jquery-300x201.jpg" alt="Jquery web site" width="300" height="201" /></a><p class="wp-caption-text">jQuery web site</p></div>
<p>Não sabe o que é jQuery? Trabalha com Javascript?</p>
<p>Se a resposta é sim ta esperando o que para ir no site, baixar a biblioteca de javascript JavaScript e usar e abusar de tudo que ele pode te oferecer.</p>
]]></content:encoded>
			<wfw:commentRss>http://cobaia.net/2008/08/jquery-de-cara-nova/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

