<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Gabriel Izaias</title>
	
	<link>http://gabrielizaias.com</link>
	<description>Web Developer: HTML, CSS &amp; JavaScript</description>
	<lastBuildDate>Mon, 30 Jan 2012 15:23:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/gabrielizaias" /><feedburner:info uri="gabrielizaias" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>CSS Selector Performance</title>
		<link>http://feedproxy.google.com/~r/gabrielizaias/~3/1X6bIoNkYKM/css-selector-performance</link>
		<comments>http://gabrielizaias.com/articles/2012/01/css-selector-performance#comments</comments>
		<pubDate>Thu, 05 Jan 2012 23:08:53 +0000</pubDate>
		<dc:creator>Gabriel Izaias</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Performance]]></category>

		<guid isPermaLink="false">http://gabrielizaias.com/?p=151</guid>
		<description><![CDATA[Juriy Zaytsev offers a nice view on CSS Selector Performance and how to make your stylesheets faster and cleaner. As our pages/apps become more interactive, the complexity of CSS increases, and browsers start to support more and more “advanced” CSS features, CSS performance will probably become even more important. Juriy Zaytsev, Profiling CSS A must [...]]]></description>
			<content:encoded><![CDATA[<p><a title="About Juriy Zaytsev on Perfection Kills" href="http://perfectionkills.com/about/">Juriy Zaytsev</a> offers a nice view on CSS Selector Performance and how to make your stylesheets faster and cleaner.</p>
<blockquote><p>As our pages/apps become more interactive, the complexity of CSS increases, and browsers start to support more and more “advanced” CSS features, CSS performance will probably become even more important.</p>
<p>Juriy Zaytsev, <a title="Profiling CSS on Perfection Kills, by Juriy Zaytsev" href="http://perfectionkills.com/profiling-css-for-fun-and-profit-optimization-notes/">Profiling CSS</a></p></blockquote>
<p>A must read for anyone interested in CSS performance.</p>
<img src="http://feeds.feedburner.com/~r/gabrielizaias/~4/1X6bIoNkYKM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://gabrielizaias.com/articles/2012/01/css-selector-performance/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://gabrielizaias.com/articles/2012/01/css-selector-performance</feedburner:origLink></item>
		<item>
		<title>jQuery urlToLink Plugin</title>
		<link>http://feedproxy.google.com/~r/gabrielizaias/~3/_rhxTDt0uGI/jquery-urltolink-plugin</link>
		<comments>http://gabrielizaias.com/articles/2011/12/jquery-urltolink-plugin#comments</comments>
		<pubDate>Sun, 04 Dec 2011 05:00:37 +0000</pubDate>
		<dc:creator>Gabriel Izaias</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://gabrielizaias.com/?p=118</guid>
		<description><![CDATA[After stumbling upon Hugo Dias&#8217;s snippet, I decided to make it a jQuery plugin so it could be easily used on my personal projects. The plugin searches for any URLs on the text and transforms them into HTML &#60;a&#62; elements. Attention: This plugin erases the event bindings of the element and its children. Use it [...]]]></description>
			<content:encoded><![CDATA[<p>After stumbling upon <a title="Hugo Dias's snippet on how to transform text URLs into HTML A tags" href="http://labs.webdiastutoriais.com/2011/11/javascript-trocando-urls-por-links/">Hugo Dias&#8217;s snippet</a>, I decided to make it a jQuery plugin so it could be easily used on my personal projects.</p>
<p>The plugin searches for any URLs on the text and transforms them into HTML <code>&lt;a&gt;</code> elements.</p>
<p><span id="more-118"></span></p>
<p><strong>Attention</strong>: This plugin erases the event bindings of the element and its children. Use it only on elements that you are sure won&#8217;t affect the overall behavior of your application.</p>
<h2>Demo &amp; Download</h2>
<p>Here is a <a title="jQuery urlToLink Plugin example on jsfiddle" href="http://jsfiddle.net/gabrielizaias/n6GTK/2/" target="_blank">demo of the plugin</a> working.</p>
<p><a title="jQuery urlToLink Plugin on GitHub" href="https://github.com/gabrielizaias/urlToLink">Download it from GitHub</a>.</p>
<h2>How to Use</h2>
<h3>Set Up</h3>
<p>jQuery urlToLink Plugin uses, as the name implies, the <a title="jQuery JavaScript Library" href="http://jquery.com">jQuery library</a>. You will need to include these two JavaScript files in your page:</p>
<pre><code>&lt;script src="js/jquery.js"&gt;&lt;/script&gt;
&lt;script src="js/jquery.urlToLink.js"&gt;&lt;/script&gt; </code></pre>
<h3>Transforming URLs Into Links</h3>
<p>Now that you have the files included in your page, you will have to call the plugin to see the magic happening. Use the following example as guide:</p>
<pre><code>$(document).ready(function(){
  $('p').urlToLink();
});</code></pre>
<h4>Parameters</h4>
<p>The only parameter is the <code>target</code> and the default value is <span style="font-family: monospace;">_self</span>.</p>
<p>You can change the default value like this:</p>
<pre><code>$(document).ready(function(){
  $('p').urlToLink({
    target : '_blank'   
  });
});</code></pre>
<p>Or you can overwrite the default value anywhere on your script like this:</p>
<pre><code>$.fn.urlToLink.defaults = { target : '_blank' }</code></pre>
<p>And that&#8217;s it. If you have any comments, please contact me via <a title="Gabriel Izaias on Twitter" href="http://twitter.com/gabrielizaias">Twitter</a> or fork the project on <a title="jQuery urlToLink Plugin on GitHub" href="https://github.com/gabrielizaias/urlToLink">GitHub</a>.</p>
<img src="http://feeds.feedburner.com/~r/gabrielizaias/~4/_rhxTDt0uGI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://gabrielizaias.com/articles/2011/12/jquery-urltolink-plugin/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://gabrielizaias.com/articles/2011/12/jquery-urltolink-plugin</feedburner:origLink></item>
		<item>
		<title>Writing Efficient JavaScript</title>
		<link>http://feedproxy.google.com/~r/gabrielizaias/~3/gJGTgqUA97Y/writing-efficient-javascript</link>
		<comments>http://gabrielizaias.com/articles/2011/12/writing-efficient-javascript#comments</comments>
		<pubDate>Sat, 03 Dec 2011 02:53:44 +0000</pubDate>
		<dc:creator>Gabriel Izaias</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://gabrielizaias.com/?p=110</guid>
		<description><![CDATA[Opera is a great company. Despite their browser being such a unfortunate child, there are many things that they&#8217;re good at. JavaScript is one of them. They have an article on how to write efficient JavaScript, where they share a variety of tips about performance. (…) as Web pages become more like applications, the performance of scripts is having [...]]]></description>
			<content:encoded><![CDATA[<p>Opera is a great company. Despite <a title="Opera Browser" href="http://www.opera.com/browser/">their browser</a> being such a unfortunate child, there are many things that they&#8217;re good at. JavaScript is one of them.</p>
<p>They have an article on <a title="Efficient JavaScript, by Opera" href="http://dev.opera.com/articles/view/efficient-javascript/">how to write efficient JavaScript</a>, where they share a variety of tips about performance.</p>
<blockquote><p>(…) as Web pages become more like applications, the performance of scripts is having a bigger effect. With more and more applications being developed using Web technologies, improving the performance of scripts is becoming increasingly important.</p>
<p>Opera, <a title="Efficient JavaScript, by Opera" href="http://dev.opera.com/articles/view/efficient-javascript/">Efficient JavaScript</a></p></blockquote>
<img src="http://feeds.feedburner.com/~r/gabrielizaias/~4/gJGTgqUA97Y" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://gabrielizaias.com/articles/2011/12/writing-efficient-javascript/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://gabrielizaias.com/articles/2011/12/writing-efficient-javascript</feedburner:origLink></item>
		<item>
		<title>URL Design</title>
		<link>http://feedproxy.google.com/~r/gabrielizaias/~3/lett6qJfWfs/url-design</link>
		<comments>http://gabrielizaias.com/articles/2011/11/url-design#comments</comments>
		<pubDate>Mon, 28 Nov 2011 00:01:41 +0000</pubDate>
		<dc:creator>Gabriel Izaias</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://gabrielizaias.com/?p=84</guid>
		<description><![CDATA[A brief opinion about taking time to design the URL structure of a webapp/website, from the Director of Design at GitHub, Kyle Neath.]]></description>
			<content:encoded><![CDATA[<p>Kyle Neath, Director of Design at GitHub, talks about the very often ignored subject of URL design.</p>
<blockquote><p>Any regular semi-technical user of your site should be able to navigate 90% of your app based off memory of the URL structure.</p>
<p>Kyle Neath, <a title="URL Design" href="http://warpspire.com/posts/url-design/">URL Design</a>.</p></blockquote>
<img src="http://feeds.feedburner.com/~r/gabrielizaias/~4/lett6qJfWfs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://gabrielizaias.com/articles/2011/11/url-design/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://gabrielizaias.com/articles/2011/11/url-design</feedburner:origLink></item>
	</channel>
</rss>

