<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr - 1man</title>
<link>http://snipplr.com/users/1man</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Sun, 06 Jul 2008 04:09:59 GMT</pubDate>
<item>
<title>(ActionScript 3) Basic Package and Class Creation / Extend</title>
<link>http://snipplr.com/view/7097/basic-package-and-class-creation--extend/</link>
<description><![CDATA[ <p>How to create a basic class in AS3 and extend it if needed.</p> ]]></description>
<pubDate>Thu, 03 Jul 2008 05:54:56 GMT</pubDate>
<guid>http://snipplr.com/view/7097/basic-package-and-class-creation--extend/</guid>
</item>
<item>
<title>(HTML) hCard microformat usage</title>
<link>http://snipplr.com/view/6645/hcard-microformat-usage/</link>
<description><![CDATA[ <p>Two usages of the hcard microformat for a single person and an organisation.</p> ]]></description>
<pubDate>Tue, 10 Jun 2008 11:30:15 GMT</pubDate>
<guid>http://snipplr.com/view/6645/hcard-microformat-usage/</guid>
</item>
<item>
<title>(HTML) Use of the adr (address) microformat</title>
<link>http://snipplr.com/view/6644/use-of-the-adr-address-microformat/</link>
<description><![CDATA[ <p>Basic usage of the address microformat.</p> ]]></description>
<pubDate>Tue, 10 Jun 2008 10:55:11 GMT</pubDate>
<guid>http://snipplr.com/view/6644/use-of-the-adr-address-microformat/</guid>
</item>
<item>
<title>(HTML) Use of the geo microformat</title>
<link>http://snipplr.com/view/6642/use-of-the-geo-microformat/</link>
<description><![CDATA[ <p>Simple useage of the geo microformat allowing a map location to be machine readable.</p> ]]></description>
<pubDate>Tue, 10 Jun 2008 10:35:03 GMT</pubDate>
<guid>http://snipplr.com/view/6642/use-of-the-geo-microformat/</guid>
</item>
<item>
<title>(HTML) VoteLinks microformat</title>
<link>http://snipplr.com/view/6530/votelinks-microformat/</link>
<description><![CDATA[ <p>Not very widely addopted microformat, but could be in the future.</p> ]]></description>
<pubDate>Sun, 01 Jun 2008 09:01:37 GMT</pubDate>
<guid>http://snipplr.com/view/6530/votelinks-microformat/</guid>
</item>
<item>
<title>(HTML) Difference between rel and rev attribute</title>
<link>http://snipplr.com/view/6529/difference-between-rel-and-rev-attribute/</link>
<description><![CDATA[ <p>Rel and rev attributes are quite hard to get your head round, and very easy to mix up. Hopefully this snippet will explain the difference.</p> ]]></description>
<pubDate>Sun, 01 Jun 2008 08:49:30 GMT</pubDate>
<guid>http://snipplr.com/view/6529/difference-between-rel-and-rev-attribute/</guid>
</item>
<item>
<title>(HTML) Usage of the Rel Attribute in Microformats (licence, tag, nofollow)</title>
<link>http://snipplr.com/view/6528/usage-of-the-rel-attribute-in-microformats-licence-tag-nofollow/</link>
<description><![CDATA[ <p>Simple usage of the rel attribute in your HTML using microformats.</p> ]]></description>
<pubDate>Sun, 01 Jun 2008 08:27:42 GMT</pubDate>
<guid>http://snipplr.com/view/6528/usage-of-the-rel-attribute-in-microformats-licence-tag-nofollow/</guid>
</item>
<item>
<title>(JavaScript) jQuery / Mootools Fade Toggle and Background Change</title>
<link>http://snipplr.com/view/6030/jquery--mootools-fade-toggle-and-background-change/</link>
<description><![CDATA[ <p>I have been meaning to learn how to use mootools for a while. As i already know how to use jQuery i thought a great way to learn would be to compare the 2 syntaxes side by side.

I'm sure there is a way of using a toggle method in mootools, so once i figure out how i will update.</p> ]]></description>
<pubDate>Mon, 28 Apr 2008 10:53:48 GMT</pubDate>
<guid>http://snipplr.com/view/6030/jquery--mootools-fade-toggle-and-background-change/</guid>
</item>
<item>
<title>(JavaScript) Stop Firebug Console Command Errors</title>
<link>http://snipplr.com/view/5485/stop-firebug-console-command-errors/</link>
<description><![CDATA[ <p>Sometimes i forget to remove firebug console commands when debuging, which makes IE and some other browsers fail / cry.

To stop this happening use the below script from firebugx.js on the firebug lite homepage.</p> ]]></description>
<pubDate>Tue, 18 Mar 2008 19:54:35 GMT</pubDate>
<guid>http://snipplr.com/view/5485/stop-firebug-console-command-errors/</guid>
</item>
<item>
<title>(JavaScript) jQuery Fade In Sequence</title>
<link>http://snipplr.com/view/5360/jquery-fade-in-sequence/</link>
<description><![CDATA[ <p>I'm sure i can clean this up quite a bit, but it works for the moment.

This function looks to see if you are on a selected page. If you are it hides the navigation, then loops through and shows each li one after the other. So they don't all fade in together. Needs a tidy i think.</p> ]]></description>
<pubDate>Mon, 10 Mar 2008 16:57:08 GMT</pubDate>
<guid>http://snipplr.com/view/5360/jquery-fade-in-sequence/</guid>
</item>
<item>
<title>(JavaScript) Function invocation and 'this' Context Example</title>
<link>http://snipplr.com/view/5280/function-invocation-and-this-context-example/</link>
<description><![CDATA[ <p>Quick example to show how 'this' depends on how the function in which you called it in was being invoked. From jQuery in Action.</p> ]]></description>
<pubDate>Wed, 05 Mar 2008 17:40:56 GMT</pubDate>
<guid>http://snipplr.com/view/5280/function-invocation-and-this-context-example/</guid>
</item>
<item>
<title>(JavaScript) Closure Example Relating to 'this' Execution Context</title>
<link>http://snipplr.com/view/5279/closure-example-relating-to-this-execution-context/</link>
<description><![CDATA[ <p>Example showing how using 'this' in a function depends on where 'this' is defined. From book jQuery in Action.</p> ]]></description>
<pubDate>Wed, 05 Mar 2008 17:32:40 GMT</pubDate>
<guid>http://snipplr.com/view/5279/closure-example-relating-to-this-execution-context/</guid>
</item>
<item>
<title>(JavaScript) jQuery Object Hash and jQuery Extend</title>
<link>http://snipplr.com/view/5273/jquery-object-hash-and-jquery-extend/</link>
<description><![CDATA[ <p>An example of how to extent the jQuery objects to include our own methods.</p> ]]></description>
<pubDate>Wed, 05 Mar 2008 06:03:46 GMT</pubDate>
<guid>http://snipplr.com/view/5273/jquery-object-hash-and-jquery-extend/</guid>
</item>
<item>
<title>(JavaScript) Option Hash Using jQuery</title>
<link>http://snipplr.com/view/5221/option-hash-using-jquery/</link>
<description><![CDATA[ <p>If you have a complex function you may need to pass it lots of arguments. Instead of having to remember how many you need to pass, and passing 'null' for un needed arguments, pass the function an object.

Now you can set the defaults inside the function, which will be superseeded if they are passed as an argument.</p> ]]></description>
<pubDate>Wed, 27 Feb 2008 15:20:11 GMT</pubDate>
<guid>http://snipplr.com/view/5221/option-hash-using-jquery/</guid>
</item>
<item>
<title>(JavaScript) Cross Browser Cursor Position</title>
<link>http://snipplr.com/view/5069/cross-browser-cursor-position/</link>
<description><![CDATA[ <p>Nice little snippet i found on Ajaxian, finds the position of the mouse cursor when it is fired.</p> ]]></description>
<pubDate>Thu, 14 Feb 2008 16:06:19 GMT</pubDate>
<guid>http://snipplr.com/view/5069/cross-browser-cursor-position/</guid>
</item>
<item>
<title>(CSS) CSS Collapsible Margins Fix (margin-top)</title>
<link>http://snipplr.com/view/4831/css-collapsible-margins-fix-margintop/</link>
<description><![CDATA[ <p>A very annoying 'bug' can occur when you are applying a top margin to an element inside a container. The inner elements margin seems to "leak" out of the top of the container. This pushes the container down, and looks very messy if you have a background applied.

Note: This is NOT and bug! Yay etc..

A quick fix is to add a padding of 1px, and a margin of -1px. Or you could add a border to the container.</p> ]]></description>
<pubDate>Tue, 29 Jan 2008 16:18:01 GMT</pubDate>
<guid>http://snipplr.com/view/4831/css-collapsible-margins-fix-margintop/</guid>
</item>
<item>
<title>(JavaScript) jQuery Link Background Quick Fade</title>
<link>http://snipplr.com/view/4662/jquery-link-background-quick-fade/</link>
<description><![CDATA[ <p>Found this quick little bit of code on the Google jQuery discussion group. It simply fades the background image of a link you have hovered over to a certain color, then fades it back to the original color.</p> ]]></description>
<pubDate>Sat, 19 Jan 2008 12:05:49 GMT</pubDate>
<guid>http://snipplr.com/view/4662/jquery-link-background-quick-fade/</guid>
</item>
<item>
<title>(JavaScript) jQuery Simple Style Switcher</title>
<link>http://snipplr.com/view/4483/jquery-simple-style-switcher/</link>
<description><![CDATA[ <p>Very simple style switcher using jquery. Takes 3 links with id's on each. When one is clicked various styles are removed, then a new one is added.</p> ]]></description>
<pubDate>Thu, 10 Jan 2008 07:20:07 GMT</pubDate>
<guid>http://snipplr.com/view/4483/jquery-simple-style-switcher/</guid>
</item>
<item>
<title>(JavaScript) Adobe AIR Open New URL with Sandbox Bridge</title>
<link>http://snipplr.com/view/4442/adobe-air-open-new-url-with-sandbox-bridge/</link>
<description><![CDATA[ <p>Adobe Air has a few security settings that stops you executing certain AIR methods when inside the sandbox. The code below bridges between the root document and the security sandbox, allowing you to open a URL in AIR in a default browser.</p> ]]></description>
<pubDate>Wed, 02 Jan 2008 10:29:36 GMT</pubDate>
<guid>http://snipplr.com/view/4442/adobe-air-open-new-url-with-sandbox-bridge/</guid>
</item>
<item>
<title>(JavaScript) Javascript Closure</title>
<link>http://snipplr.com/view/4247/javascript-closure/</link>
<description><![CDATA[ <p>Apologies if I haven't explained this to well, I'm still trying to get my head round closures.</p> ]]></description>
<pubDate>Sun, 02 Dec 2007 17:04:45 GMT</pubDate>
<guid>http://snipplr.com/view/4247/javascript-closure/</guid>
</item>
</channel>
</rss>