<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Snipplr</title>
    <description>Recent snippets posted on Snipplr.com</description>
    <link>https://snipplr.com/</link>
    <lastBuildDate>Tue, 09 Jun 2026 16:08:57 +0000</lastBuildDate>
    <item>
      <title>(JavaScript) Session variables without cookies - alvaroisorna</title>
      <link>https://snipplr.com/view/6205/session-variables-without-cookies</link>
      <description>&lt;p&gt;"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."&lt;/p&gt;</description>
      <pubDate>Tue, 13 May 2008 07:39:06 UTC</pubDate>
      <guid>https://snipplr.com/view/6205/session-variables-without-cookies</guid>
    </item>
    <item>
      <title>(JavaScript) JavaScript i18n String object &amp; localize method - alvaroisorna</title>
      <link>https://snipplr.com/view/4266/javascript-i18n-string-object--localize-method</link>
      <description>&lt;p&gt;This snippet extends the String object so that you can localize() i18n strings&lt;/p&gt;</description>
      <pubDate>Wed, 05 Dec 2007 06:26:24 UTC</pubDate>
      <guid>https://snipplr.com/view/4266/javascript-i18n-string-object--localize-method</guid>
    </item>
    <item>
      <title>(JavaScript) JavaScript isDefined() - alvaroisorna</title>
      <link>https://snipplr.com/view/3734/javascript-isdefined</link>
      <description>&lt;p&gt;seen at: http://jehiah.cz/archive/javascript-isdefined-function&lt;/p&gt;</description>
      <pubDate>Wed, 19 Sep 2007 02:49:14 UTC</pubDate>
      <guid>https://snipplr.com/view/3734/javascript-isdefined</guid>
    </item>
    <item>
      <title>(JavaScript) Javascript dynamic effects library for css &amp; html - alvaroisorna</title>
      <link>https://snipplr.com/view/3628/javascript-dynamic-effects-library-for-css--html</link>
      <description>&lt;p&gt;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.&lt;/p&gt;</description>
      <pubDate>Tue, 04 Sep 2007 02:13:10 UTC</pubDate>
      <guid>https://snipplr.com/view/3628/javascript-dynamic-effects-library-for-css--html</guid>
    </item>
    <item>
      <title>(JavaScript) String.replaceAll method implementation - alvaroisorna</title>
      <link>https://snipplr.com/view/3141/stringreplaceall-method-implementation</link>
      <description>&lt;p&gt;This snippet adds a replaceAll method to the String prototype, so that you can call it later like this:&#13;
"test string".replaceAll("s", "-"); // returns "te-t -tring"&lt;/p&gt;</description>
      <pubDate>Wed, 04 Jul 2007 01:11:24 UTC</pubDate>
      <guid>https://snipplr.com/view/3141/stringreplaceall-method-implementation</guid>
    </item>
    <item>
      <title>(JavaScript) Ajaxian Â» Sandboxing JavaScript with iframes - alvaroisorna</title>
      <link>https://snipplr.com/view/1693/ajaxian--sandboxing-javascript-with-iframes</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 20 Nov 2006 06:55:43 UTC</pubDate>
      <guid>https://snipplr.com/view/1693/ajaxian--sandboxing-javascript-with-iframes</guid>
    </item>
    <item>
      <title>(JavaScript) Execute Event.observer inside other different event (with prototype) - alvaroisorna</title>
      <link>https://snipplr.com/view/618/execute-eventobserver-inside-other-different-event-with-prototype</link>
      <description>&lt;p&gt;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.&#13;
&#13;
- this code requires prototype.js -&#13;
&#13;
Hope you enjoy it!&lt;/p&gt;</description>
      <pubDate>Tue, 01 Aug 2006 04:02:02 UTC</pubDate>
      <guid>https://snipplr.com/view/618/execute-eventobserver-inside-other-different-event-with-prototype</guid>
    </item>
    <item>
      <title>(JavaScript) Template - New JavaScript File - alvaroisorna</title>
      <link>https://snipplr.com/view/328/template--new-javascript-file</link>
      <description>&lt;p&gt;this is the template i mostly use when create new js files&lt;/p&gt;</description>
      <pubDate>Mon, 10 Jul 2006 04:25:13 UTC</pubDate>
      <guid>https://snipplr.com/view/328/template--new-javascript-file</guid>
    </item>
    <item>
      <title>(JavaScript) PNG Opacity support for Internet Explorer (simplified) - alvaroisorna</title>
      <link>https://snipplr.com/view/125/png-opacity-support-for-internet-explorer-simplified</link>
      <description>&lt;p&gt;first try to a crossbrowser support for png's opacity support&lt;/p&gt;</description>
      <pubDate>Fri, 30 Jun 2006 05:11:50 UTC</pubDate>
      <guid>https://snipplr.com/view/125/png-opacity-support-for-internet-explorer-simplified</guid>
    </item>
    <item>
      <title>(JavaScript) namespaced constructor object - alvaroisorna</title>
      <link>https://snipplr.com/view/110/namespaced-constructor-object</link>
      <description>&lt;p&gt;this snippet will help you understand how to use namespacing and oop construnction in JavaScript&lt;/p&gt;</description>
      <pubDate>Fri, 30 Jun 2006 00:27:02 UTC</pubDate>
      <guid>https://snipplr.com/view/110/namespaced-constructor-object</guid>
    </item>
    <item>
      <title>(JavaScript) namespaced function - alvaroisorna</title>
      <link>https://snipplr.com/view/109/namespaced-function</link>
      <description>&lt;p&gt;this example will help you understand how to use namespacing in JavaScript&lt;/p&gt;</description>
      <pubDate>Fri, 30 Jun 2006 00:23:51 UTC</pubDate>
      <guid>https://snipplr.com/view/109/namespaced-function</guid>
    </item>
  </channel>
</rss>
