<?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>Webmaster Lib</title>
	<atom:link href="http://webmasterlib.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://webmasterlib.com</link>
	<description>Your webmaster portal</description>
	<lastBuildDate>Thu, 02 Feb 2012 14:56:52 +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>Remove &#8216;#&#8217; from URL</title>
		<link>http://webmasterlib.com/javascript/remove-from-url/</link>
		<comments>http://webmasterlib.com/javascript/remove-from-url/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 14:56:52 +0000</pubDate>
		<dc:creator>fabiofelicidade</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://webmasterlib.com/?p=35</guid>
		<description><![CDATA[Sometimes, show in url a link like &#8216;http://youtwebsite.com/#link&#8217; is not desirable. We can prevent it with the following routine in jquery: $(&#8220;a&#8221;).live(&#8220;click&#8221;, function(){ return ($(this).attr(&#8220;href&#8221;)[0] == &#8220;#&#8221;) ? false : true; });]]></description>
			<content:encoded><![CDATA[<p>Sometimes, show in url a link like &#8216;http://youtwebsite.com/#link&#8217; is not desirable.<br />
We can prevent it with the following routine in jquery:</p>
<p>$(&#8220;a&#8221;).live(&#8220;click&#8221;, function(){<br />
	return ($(this).attr(&#8220;href&#8221;)[0] == &#8220;#&#8221;) ? false : true;<br />
});</p>
]]></content:encoded>
			<wfw:commentRss>http://webmasterlib.com/javascript/remove-from-url/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reset CSS from Eric Meyer</title>
		<link>http://webmasterlib.com/css/reset-css-from-eric-meyer/</link>
		<comments>http://webmasterlib.com/css/reset-css-from-eric-meyer/#comments</comments>
		<pubDate>Sat, 21 Jan 2012 19:40:14 +0000</pubDate>
		<dc:creator>fabiofelicidade</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS Default]]></category>
		<category><![CDATA[CSS Reset]]></category>

		<guid isPermaLink="false">http://webmasterlib.com/?p=23</guid>
		<description><![CDATA[reset.css is a CSS reset styles to reduce inconsistencies of browser when we build a website. It’s a great tool that simplifies the creation of layouts and keeps coherence in most browsers. According to meyerweb.com, The reset styles given here are intentionally very generic. There isn&#8217;t any default color or background set for the body element, for example. I don&#8217;t particularly recommend that you just use this in its unaltered state in your own projects. [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Reset CSS" href="http://meyerweb.com/eric/tools/css/reset/reset.css" target="_blank">reset.css</a> is a CSS reset styles to reduce inconsistencies of browser when we build a website.<br />
It’s a great tool that simplifies the creation of layouts and keeps coherence in most browsers.</p>
<p>According to <a title="http://www.meyerweb.com" href="http://www.meyerweb.com" target="_blank">meyerweb.com</a>,</p>
<blockquote><p>The reset styles given here are intentionally very generic. There isn&#8217;t any default color or background set for the body element, for example. I don&#8217;t particularly recommend that you just use this in its unaltered state in your own projects. It should be tweaked, edited, extended, and otherwise tuned to match your specific reset baseline. Fill in your preferred colors for the page, links, and so on.</p></blockquote>
<p>/* http://meyerweb.com/eric/tools/css/reset/<br />
   v2.0 | 20110126<br />
   License: none (public domain)<br />
*/</p>
<p>html, body, div, span, applet, object, iframe,<br />
h1, h2, h3, h4, h5, h6, p, blockquote, pre,<br />
a, abbr, acronym, address, big, cite, code,<br />
del, dfn, em, img, ins, kbd, q, s, samp,<br />
small, strike, strong, sub, sup, tt, var,<br />
b, u, i, center,<br />
dl, dt, dd, ol, ul, li,<br />
fieldset, form, label, legend,<br />
table, caption, tbody, tfoot, thead, tr, th, td,<br />
article, aside, canvas, details, embed,<br />
figure, figcaption, footer, header, hgroup,<br />
menu, nav, output, ruby, section, summary,<br />
time, mark, audio, video {<br />
	margin: 0;<br />
	padding: 0;<br />
	border: 0;<br />
	font-size: 100%;<br />
	font: inherit;<br />
	vertical-align: baseline;<br />
}<br />
/* HTML5 display-role reset for older browsers */<br />
article, aside, details, figcaption, figure,<br />
footer, header, hgroup, menu, nav, section {<br />
	display: block;<br />
}<br />
body {<br />
	line-height: 1;<br />
}<br />
ol, ul {<br />
	list-style: none;<br />
}<br />
blockquote, q {<br />
	quotes: none;<br />
}<br />
blockquote:before, blockquote:after,<br />
q:before, q:after {<br />
	content: &#8221;;<br />
	content: none;<br />
}<br />
table {<br />
	border-collapse: collapse;<br />
	border-spacing: 0;<br />
}</p>
]]></content:encoded>
			<wfw:commentRss>http://webmasterlib.com/css/reset-css-from-eric-meyer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

