<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr - alvaroisorna</title>
<link>http://snipplr.com/users/alvaroisorna</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Thu, 24 Jul 2008 08:06:17 GMT</pubDate>
<item>
<title>(JavaScript) Session variables without cookies</title>
<link>http://snipplr.com/view/6205/session-variables-without-cookies/</link>
<description><![CDATA[ <p>"I never liked the JavaScript implementation of cookies. The storage space is limited (4 x 20 Kb per domain), the only data format that can be used is a string and the syntax for setting and getting cookies is unnecessarily complicated. On top of that they get added to the browser request header - and since a lot of corporate firewalls only accept a rather limited request header length they might prevent your pages from loading at all. (I've seen it happen - it's ugly.) So I've made a small script that let you use JavaScript session variables without using cookies. It will let you store 2 MB of data, with much less hassle than a cookie based solution."</p> ]]></description>
<pubDate>Tue, 13 May 2008 07:39:06 GMT</pubDate>
<guid>http://snipplr.com/view/6205/session-variables-without-cookies/</guid>
</item>
<item>
<title>(CSS) Easy cross-browser transparency</title>
<link>http://snipplr.com/view/6140/easy-crossbrowser-transparency/</link>
<description><![CDATA[ <p>If you've ever found yourself in the position of needing to place a semi-transparent image or layer on a web page, you've probably ended up reading various arcane methods involving 24-bit PNG graphics and proprietary IE AlphaImageLoader expressions. Luckily, there is an easier way; albeit at the expense of valid CSS.</p> ]]></description>
<pubDate>Wed, 07 May 2008 04:52:55 GMT</pubDate>
<guid>http://snipplr.com/view/6140/easy-crossbrowser-transparency/</guid>
</item>
<item>
<title>(Java) Java i18n to JavaScript Object action</title>
<link>http://snipplr.com/view/4267/java-i18n-to-javascript-object-action/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 05 Dec 2007 06:31:15 GMT</pubDate>
<guid>http://snipplr.com/view/4267/java-i18n-to-javascript-object-action/</guid>
</item>
<item>
<title>(JavaScript) JavaScript i18n String object &amp;amp; localize method</title>
<link>http://snipplr.com/view/4266/javascript-i18n-string-object--localize-method/</link>
<description><![CDATA[ <p>This snippet extends the String object so that you can localize() i18n strings</p> ]]></description>
<pubDate>Wed, 05 Dec 2007 06:26:24 GMT</pubDate>
<guid>http://snipplr.com/view/4266/javascript-i18n-string-object--localize-method/</guid>
</item>
<item>
<title>(JavaScript) JavaScript isDefined()</title>
<link>http://snipplr.com/view/3734/javascript-isdefined/</link>
<description><![CDATA[ <p>seen at: http://jehiah.cz/archive/javascript-isdefined-function</p> ]]></description>
<pubDate>Wed, 19 Sep 2007 02:49:14 GMT</pubDate>
<guid>http://snipplr.com/view/3734/javascript-isdefined/</guid>
</item>
<item>
<title>(JavaScript) Javascript dynamic effects library for css &amp;amp; html</title>
<link>http://snipplr.com/view/3628/javascript-dynamic-effects-library-for-css--html/</link>
<description><![CDATA[ <p>This js library will help you add dynamic effects to your html tags. It's recommended for IE, as it helps you to simulate tag:hover effects for example.</p> ]]></description>
<pubDate>Tue, 04 Sep 2007 02:13:10 GMT</pubDate>
<guid>http://snipplr.com/view/3628/javascript-dynamic-effects-library-for-css--html/</guid>
</item>
<item>
<title>(JavaScript) String.replaceAll method implementation</title>
<link>http://snipplr.com/view/3141/stringreplaceall-method-implementation/</link>
<description><![CDATA[ <p>This snippet adds a replaceAll method to the String prototype, so that you can call it later like this:
"test string".replaceAll("s", "-"); // returns "te-t -tring"</p> ]]></description>
<pubDate>Wed, 04 Jul 2007 01:11:24 GMT</pubDate>
<guid>http://snipplr.com/view/3141/stringreplaceall-method-implementation/</guid>
</item>
<item>
<title>(CSS) grayscale img with css crossbrowser</title>
<link>http://snipplr.com/view/2836/grayscale-img-with-css-crossbrowser/</link>
<description><![CDATA[ <p>this snippet modifies a SPAN tag inside a A link so that it covers a nearby IMG and applies a semi-transparent gray layer over it, making the IMG to be grayscaled</p> ]]></description>
<pubDate>Mon, 11 Jun 2007 02:23:16 GMT</pubDate>
<guid>http://snipplr.com/view/2836/grayscale-img-with-css-crossbrowser/</guid>
</item>
<item>
<title>(JavaScript) Ajaxian » Sandboxing JavaScript with iframes</title>
<link>http://snipplr.com/view/1693/ajaxian--sandboxing-javascript-with-iframes/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Mon, 20 Nov 2006 06:55:43 GMT</pubDate>
<guid>http://snipplr.com/view/1693/ajaxian--sandboxing-javascript-with-iframes/</guid>
</item>
<item>
<title>(CSS) No More IE6 Background Flicker</title>
<link>http://snipplr.com/view/1412/no-more-ie6-background-flicker/</link>
<description><![CDATA[ <p>original post by Cristi Balan: http://evil.che.lu/2006/9/25/no-more-ie6-background-flicker</p> ]]></description>
<pubDate>Mon, 16 Oct 2006 07:56:01 GMT</pubDate>
<guid>http://snipplr.com/view/1412/no-more-ie6-background-flicker/</guid>
</item>
<item>
<title>(JavaScript) Execute Event.observer inside other different event (with prototype)</title>
<link>http://snipplr.com/view/618/execute-eventobserver-inside-other-different-event-with-prototype/</link>
<description><![CDATA[ <p>I've found a very nice (and standard) solution to firing events while it's not normally available, this piece of code searchs the active element (a text input) inside the Event.observers collection and fires the "onchange" event (normally not possible in explorer) when the return key is pressed.

- this code requires prototype.js -

Hope you enjoy it!</p> ]]></description>
<pubDate>Tue, 01 Aug 2006 04:02:02 GMT</pubDate>
<guid>http://snipplr.com/view/618/execute-eventobserver-inside-other-different-event-with-prototype/</guid>
</item>
<item>
<title>(JavaScript) Template - New JavaScript File</title>
<link>http://snipplr.com/view/328/template--new-javascript-file/</link>
<description><![CDATA[ <p>this is the template i mostly use when create new js files</p> ]]></description>
<pubDate>Mon, 10 Jul 2006 04:25:13 GMT</pubDate>
<guid>http://snipplr.com/view/328/template--new-javascript-file/</guid>
</item>
<item>
<title>(CSS) CSS Box Model Hack</title>
<link>http://snipplr.com/view/214/css-box-model-hack/</link>
<description><![CDATA[ <p>classical box model hack, by Tantek Çelik

http://www.tantek.com/CSS/Examples/boxmodelhack.html</p> ]]></description>
<pubDate>Tue, 04 Jul 2006 07:50:38 GMT</pubDate>
<guid>http://snipplr.com/view/214/css-box-model-hack/</guid>
</item>
<item>
<title>(PHP) sanitizeTags, version 1.0 (Daniel Mota aka IceBeat)</title>
<link>http://snipplr.com/view/213/sanitizetags-version-10-daniel-mota-aka-icebeat/</link>
<description><![CDATA[ <p>Taken from Daniel Mota at

http://icebeat.bitacoras.com/archivo/199/</p> ]]></description>
<pubDate>Tue, 04 Jul 2006 06:37:57 GMT</pubDate>
<guid>http://snipplr.com/view/213/sanitizetags-version-10-daniel-mota-aka-icebeat/</guid>
</item>
<item>
<title>(JavaScript) PNG Opacity support for Internet Explorer (simplified)</title>
<link>http://snipplr.com/view/125/png-opacity-support-for-internet-explorer-simplified/</link>
<description><![CDATA[ <p>first try to a crossbrowser support for png's opacity support</p> ]]></description>
<pubDate>Fri, 30 Jun 2006 05:11:50 GMT</pubDate>
<guid>http://snipplr.com/view/125/png-opacity-support-for-internet-explorer-simplified/</guid>
</item>
<item>
<title>(JavaScript) namespaced constructor object</title>
<link>http://snipplr.com/view/110/namespaced-constructor-object/</link>
<description><![CDATA[ <p>this snippet will help you understand how to use namespacing and oop construnction in JavaScript</p> ]]></description>
<pubDate>Fri, 30 Jun 2006 00:27:02 GMT</pubDate>
<guid>http://snipplr.com/view/110/namespaced-constructor-object/</guid>
</item>
<item>
<title>(JavaScript) namespaced function</title>
<link>http://snipplr.com/view/109/namespaced-function/</link>
<description><![CDATA[ <p>this example will help you understand how to use namespacing in JavaScript</p> ]]></description>
<pubDate>Fri, 30 Jun 2006 00:23:51 GMT</pubDate>
<guid>http://snipplr.com/view/109/namespaced-function/</guid>
</item>
</channel>
</rss>