<?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>wbruno</title>
	<atom:link href="http://www.wbruno.com.br/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.wbruno.com.br/blog</link>
	<description>Só mais um blog do WordPress</description>
	<lastBuildDate>Wed, 28 Jul 2010 04:05: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>Ocultar/Mostrar elementos apartir de radio select</title>
		<link>http://www.wbruno.com.br/blog/?p=68</link>
		<comments>http://www.wbruno.com.br/blog/?p=68#comments</comments>
		<pubDate>Wed, 28 Jul 2010 04:05:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Não Classificados]]></category>

		<guid isPermaLink="false">http://www.wbruno.com.br/blog/?p=68</guid>
		<description><![CDATA[


&#60;html&#62;


&#60;head&#62;


&#60;script type=&#34;text/javascript&#34;&#62;


function id&#40; el &#41;&#123;


        return document.getElementById&#40; el &#41;;


&#125;


function mostra&#40; el &#41;&#123;


        id&#40; el &#41;.style.display = &#8216;block&#8217;;


&#125;


function esconde_todos&#40; el, tagName &#41;&#123;


        var tags = el.getElementsByTagName&#40; tagName &#41;;


        for&#40; var i=0; i&#60;tags.length; i++ &#41;


        &#123;


              [...]]]></description>
		<wfw:commentRss>http://www.wbruno.com.br/blog/?feed=rss2&amp;p=68</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alterando src dentro de textarea com ER</title>
		<link>http://www.wbruno.com.br/blog/?p=66</link>
		<comments>http://www.wbruno.com.br/blog/?p=66#comments</comments>
		<pubDate>Wed, 28 Jul 2010 04:04:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Não Classificados]]></category>

		<guid isPermaLink="false">http://www.wbruno.com.br/blog/?p=66</guid>
		<description><![CDATA[


&#60;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Strict//EN&#34;


        &#34;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&#34;&#62;


&#60;html xmlns=&#34;http://www.w3.org/1999/xhtml&#34; xml:lang=&#34;pt-br&#34; lang=&#34;pt-br&#34;&#62;


&#60;head&#62;


&#60;script type=&#34;text/javascript&#34;&#62;


function id&#40; el &#41;&#123;


        return document.getElementById&#40; el &#41;;


&#125;


window.onload = function&#40;&#41;&#123;


        var imgs = document.getElementsByTagName&#40;&#8216;img&#8217;&#41;;


        for&#40; var i=0; i&#60;imgs.length; i++ &#41;&#123;


                imgs&#91;i&#93;.onclick = function&#40;&#41;&#123;


      [...]]]></description>
		<wfw:commentRss>http://www.wbruno.com.br/blog/?feed=rss2&amp;p=66</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Somar inputs dentro de fieldset javascript</title>
		<link>http://www.wbruno.com.br/blog/?p=63</link>
		<comments>http://www.wbruno.com.br/blog/?p=63#comments</comments>
		<pubDate>Sat, 24 Jul 2010 02:54:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Não Classificados]]></category>

		<guid isPermaLink="false">http://www.wbruno.com.br/blog/?p=63</guid>
		<description><![CDATA[


&#60;html&#62;


&#60;head&#62;


&#60;script type=&#34;text/javascript&#34;&#62;


function id&#40; el &#41;&#123;


return document.getElementById&#40; el &#41;;


&#125;


function soma&#40;&#41;&#123;


var inputs = id&#40;&#8216;campos&#8217;&#41;.getElementsByTagName&#40;&#8216;input&#8217;&#41;;


&#160;


var soma =0;


for&#40; var i=0; i&#60;inputs.length; i++ &#41;&#123;


soma += parseInt&#40; inputs&#91;i&#93;.value &#41;;


&#125;


id&#40;&#8216;resultado&#8217;&#41;.value = soma;


&#125;


window.onload = function&#40;&#41;&#123;


id&#40;&#8217;somar&#8217;&#41;.onclick = function&#40;&#41;&#123;


soma&#40;&#41;;


&#125;


&#125;


&#60;/script&#62;


&#60;/head&#62;


&#60;body&#62;


&#60;form action=&#34;&#34; method=&#34;post&#34;&#62;


&#60;fieldset id=&#34;campos&#34;&#62;


&#60;label&#62;&#60;input type=&#34;text&#34; name=&#34;valor[]&#34; value=&#34;2&#34; /&#62;&#60;/label&#62;


&#60;label&#62;&#60;input type=&#34;text&#34; name=&#34;valor[]&#34; value=&#34;5&#34; /&#62;&#60;/label&#62;


&#60;label&#62;&#60;input type=&#34;text&#34; name=&#34;valor[]&#34; value=&#34;8&#34; /&#62;&#60;/label&#62;


&#60;label&#62;&#60;input type=&#34;text&#34; name=&#34;valor[]&#34; value=&#34;9&#34; /&#62;&#60;/label&#62;


&#60;label&#62;&#60;input type=&#34;text&#34; name=&#34;valor[]&#34; value=&#34;1&#34; /&#62;&#60;/label&#62;


&#60;/fieldset&#62;


&#160;


&#60;input type=&#34;button&#34; name=&#34;somar&#34; id=&#34;somar&#34; [...]]]></description>
		<wfw:commentRss>http://www.wbruno.com.br/blog/?feed=rss2&amp;p=63</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>hover de imagens toggle src</title>
		<link>http://www.wbruno.com.br/blog/?p=61</link>
		<comments>http://www.wbruno.com.br/blog/?p=61#comments</comments>
		<pubDate>Wed, 14 Jul 2010 15:01:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Não Classificados]]></category>

		<guid isPermaLink="false">http://www.wbruno.com.br/blog/?p=61</guid>
		<description><![CDATA[


&#160;


&#60;html&#62;


&#60;head&#62;


&#60;script type=&#34;text/javascript&#34;&#62;


window.onload = function&#40;&#41;


&#123;


&#160; &#160; &#160; &#160; var normal = &#8221;;


&#160; &#160; &#160; &#160; toggle_src&#40; id&#40;&#8216;a1&#8242;&#41; &#41;;


&#160; &#160; &#160; &#160; toggle_src&#40; id&#40;&#8216;a2&#8242;&#41; &#41;;


&#125;


function id&#40; el &#41;&#123;


&#160; &#160; &#160; &#160; return document.getElementById&#40; el &#41;;


&#125;


function toggle_src&#40; el &#41;


&#123;


&#160; &#160; &#160; &#160; el.onmouseover = function&#40;&#41;&#123;


&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; normal = this.src;


&#160; &#160; &#160; &#160; [...]]]></description>
		<wfw:commentRss>http://www.wbruno.com.br/blog/?feed=rss2&amp;p=61</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>onkeyup com delay..</title>
		<link>http://www.wbruno.com.br/blog/?p=59</link>
		<comments>http://www.wbruno.com.br/blog/?p=59#comments</comments>
		<pubDate>Wed, 14 Jul 2010 15:00:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Não Classificados]]></category>

		<guid isPermaLink="false">http://www.wbruno.com.br/blog/?p=59</guid>
		<description><![CDATA[


&#160;


&#60;html&#62;


&#60;head&#62;


&#60;script type=&#34;text/javascript&#34; src=&#34;jquery-1.4.2.min.js&#34;&#62;&#60;/script&#62;


&#60;script type=&#34;text/javascript&#34;&#62;


$&#40;document&#41;.ready&#40;function&#40;&#41;&#123;


&#160; &#160; &#160; &#160; var intervalo = 0;


&#160; &#160; &#160; &#160; $&#40;&#34;input[name='search']&#34;&#41;.keyup&#40;function&#40;&#41;&#123;


&#160;


&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; clearInterval&#40; intervalo &#41;;//ou clearTimeout()


&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; intervalo = window.setTimeout&#40; ajax, 1500 &#41;;


&#160; &#160; &#160; &#160; &#125;&#41;;


&#125;&#41;;


function ajax&#40;&#41;


&#123;


&#160; &#160; &#160; &#160; alert&#40; &#8216;Agora pode ir executar&#8217; &#41;;


&#125;


&#60;/script&#62;


&#60;/head&#62;


&#60;body&#62;


&#160; &#160; &#160; [...]]]></description>
		<wfw:commentRss>http://www.wbruno.com.br/blog/?feed=rss2&amp;p=59</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Label de Option da tag select</title>
		<link>http://www.wbruno.com.br/blog/?p=50</link>
		<comments>http://www.wbruno.com.br/blog/?p=50#comments</comments>
		<pubDate>Wed, 14 Jul 2010 14:45:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Não Classificados]]></category>

		<guid isPermaLink="false">http://www.wbruno.com.br/blog/?p=50</guid>
		<description><![CDATA[


&#160;


&#60;html&#62;


&#60;head&#62;


&#60;script type=&#34;text/javascript&#34;&#62;


function label_option&#40; el &#41;


&#123;


        var label = el.options&#91; el.selectedIndex &#93;.text;


        alert&#40; label &#41;;


&#125;


window.onload = function&#40;&#41;


&#123;


        document.getElementById&#40; &#8216;teste&#8217; &#41;.onchange = function&#40;&#41;


        &#123;


                label_option&#40; this &#41;;


        &#125;


&#125;


&#60;/script&#62;


&#60;/head&#62;


&#60;body&#62;


        &#60;form action=&#34;&#34; method=&#34;post&#34;&#62;


    [...]]]></description>
		<wfw:commentRss>http://www.wbruno.com.br/blog/?feed=rss2&amp;p=50</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>só ativar links ao carregar imagens</title>
		<link>http://www.wbruno.com.br/blog/?p=47</link>
		<comments>http://www.wbruno.com.br/blog/?p=47#comments</comments>
		<pubDate>Fri, 11 Jun 2010 20:54:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Não Classificados]]></category>

		<guid isPermaLink="false">http://www.wbruno.com.br/blog/?p=47</guid>
		<description><![CDATA[hein?! pseudo-código ?  não entendi oque você tentou fazer, ou se isso ai em cima existe.. o que eu pensei, foi o seguinte:            Desativar Link antes do carregamento



&#160;


&#60;script type=&#34;text/javascript&#34;&#62;// &#60;![CDATA[


window.onload = function&#40;&#41;


&#123;


&#160; &#160; &#160; &#160; var as = document.getElementsByTagName&#40;'a'&#41;;


&#160; &#160; &#160; &#160; for&#40; [...]]]></description>
		<wfw:commentRss>http://www.wbruno.com.br/blog/?feed=rss2&amp;p=47</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mascaras com jQuery e JS, trocando de campo no maxLength</title>
		<link>http://www.wbruno.com.br/blog/?p=42</link>
		<comments>http://www.wbruno.com.br/blog/?p=42#comments</comments>
		<pubDate>Fri, 07 May 2010 00:47:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Não Classificados]]></category>

		<guid isPermaLink="false">http://www.wbruno.com.br/blog/?p=42</guid>
		<description><![CDATA[Cara, se você tiver disposto à trocar de máscara, essas com ER são muito boas, e não te darão esse tipo de problema:
http://forum.imaster&#8230;ost__p__1532871



&#60;html&#62;


&#60;head&#62;


&#60;script type=&#34;text/javascript&#34;&#62;


/* Máscaras ER */


function mascara&#40;o,f&#41;&#123;


    v_obj=o


    v_fun=f


    setTimeout&#40;&#34;execmascara()&#34;,1&#41;


&#125;


function execmascara&#40;&#41;&#123;


    v_obj.value=v_fun&#40;v_obj.value&#41;


&#125;


function mcep&#40;v&#41;&#123;


    v=v.replace&#40;/\D/g,&#34;&#34;&#41;                    //Remove tudo o que não é [...]]]></description>
		<wfw:commentRss>http://www.wbruno.com.br/blog/?feed=rss2&amp;p=42</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Combobox dinâmico com cadastro AJAX</title>
		<link>http://www.wbruno.com.br/blog/?p=35</link>
		<comments>http://www.wbruno.com.br/blog/?p=35#comments</comments>
		<pubDate>Wed, 07 Apr 2010 10:54:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AJAX]]></category>

		<guid isPermaLink="false">http://www.wbruno.com.br/blog/?p=35</guid>
		<description><![CDATA[Cara, não é &#8216;algo comum&#8217;, mas achei interessante essa dúvida, e resolvi montar.
Em funcionamento:
http://www.wbruno.co&#8230;form-cidade.php
config.inc.php



&#60;?php


&#160;


&#160; &#160; &#160; &#160; header&#40;&#34;Content-Type: text/html; charset=ISO-8859-1&#34;&#41;;


&#160; &#160; &#160; &#160;


&#160; &#160; &#160; &#160; //Evitando cache de arquivo


&#160; &#160; &#160; &#160; header&#40;&#8216;Expires: Mon, 26 Jul 1997 05:00:00 GMT&#8217;&#41;;


&#160; &#160; &#160; &#160; header&#40;&#8216;Last Modified: &#8216;. gmdate&#40;&#8216;D, d M Y H:i:s&#8217;&#41; .&#8216; GMT&#8217;&#41;;


&#160; &#160; &#160; [...]]]></description>
		<wfw:commentRss>http://www.wbruno.com.br/blog/?feed=rss2&amp;p=35</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Suggest AJAX &#8211; jQuery &#8211; php/Mysql</title>
		<link>http://www.wbruno.com.br/blog/?p=24</link>
		<comments>http://www.wbruno.com.br/blog/?p=24#comments</comments>
		<pubDate>Sat, 09 Jan 2010 02:32:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AJAX]]></category>

		<guid isPermaLink="false">http://www.wbruno.com.br/blog/?p=24</guid>
		<description><![CDATA[Resolvi brincar um pouquinho aqui..]]></description>
		<wfw:commentRss>http://www.wbruno.com.br/blog/?feed=rss2&amp;p=24</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
	</channel>
</rss>
