<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr - mlange</title>
<link>http://snipplr.com/users/mlange</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Wed, 22 May 2013 17:49:36 GMT</pubDate>
<item>
<title>(JavaScript) DOM tree</title>
<link>http://snipplr.com/view/1292/dom-tree/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 03 Oct 2006 05:56:48 GMT</pubDate>
<guid>http://snipplr.com/view/1292/dom-tree/</guid>
</item>
<item>
<title>(JavaScript) Useful bookmarklets</title>
<link>http://snipplr.com/view/1291/useful-bookmarklets/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 03 Oct 2006 05:48:01 GMT</pubDate>
<guid>http://snipplr.com/view/1291/useful-bookmarklets/</guid>
</item>
<item>
<title>(JavaScript) String Functions</title>
<link>http://snipplr.com/view/1290/string-functions/</link>
<description><![CDATA[ <p>Source: strings @ javascriptkit.com</p> ]]></description>
<pubDate>Tue, 03 Oct 2006 05:43:20 GMT</pubDate>
<guid>http://snipplr.com/view/1290/string-functions/</guid>
</item>
<item>
<title>(JavaScript) Referencing window elements</title>
<link>http://snipplr.com/view/1289/referencing-window-elements/</link>
<description><![CDATA[ <p>Source: Browser inspecific referencing @ howtocreate</p> ]]></description>
<pubDate>Tue, 03 Oct 2006 05:39:32 GMT</pubDate>
<guid>http://snipplr.com/view/1289/referencing-window-elements/</guid>
</item>
<item>
<title>(JavaScript) Math functions</title>
<link>http://snipplr.com/view/1288/math-functions/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 03 Oct 2006 05:34:14 GMT</pubDate>
<guid>http://snipplr.com/view/1288/math-functions/</guid>
</item>
<item>
<title>(JavaScript) DOM manipulation</title>
<link>http://snipplr.com/view/1287/dom-manipulation/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 03 Oct 2006 05:32:26 GMT</pubDate>
<guid>http://snipplr.com/view/1287/dom-manipulation/</guid>
</item>
<item>
<title>(JavaScript) event information</title>
<link>http://snipplr.com/view/1286/event-information/</link>
<description><![CDATA[ <p>Source: eventinfo @ howtocreate</p> ]]></description>
<pubDate>Tue, 03 Oct 2006 05:25:11 GMT</pubDate>
<guid>http://snipplr.com/view/1286/event-information/</guid>
</item>
<item>
<title>(JavaScript) javascript MVC</title>
<link>http://snipplr.com/view/1285/javascript-mvc/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 03 Oct 2006 05:18:19 GMT</pubDate>
<guid>http://snipplr.com/view/1285/javascript-mvc/</guid>
</item>
<item>
<title>(JavaScript) Creating Time Delays</title>
<link>http://snipplr.com/view/1284/creating-time-delays/</link>
<description><![CDATA[ <p>Source: Creating time delays @ howtocreate

There are two ways of creating time delays with JavaScript. The first is more simple and will simply wait for a specified amount of time before executing a function. The second does the same but will repeatedly execute the function.

Note, most browsers have a minimum delay length of between 25 and 75 ms. If a shorter delay is specified, the actual delay will be the minimum delay length. Even with higher numbers, the delay is never perfect. Most browsers will take slightly longer than the time you ask for, typically just a few miliseconds error. Some may correct their errors over time with interval timers. Also note, setting many timers with short delays on one page will cause the browser to become slow and somewhat unresponsive. Three or four timers is usually the reliable limit.</p> ]]></description>
<pubDate>Tue, 03 Oct 2006 05:15:54 GMT</pubDate>
<guid>http://snipplr.com/view/1284/creating-time-delays/</guid>
</item>
<item>
<title>(JavaScript) Creating objects</title>
<link>http://snipplr.com/view/1282/creating-objects/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 03 Oct 2006 05:13:38 GMT</pubDate>
<guid>http://snipplr.com/view/1282/creating-objects/</guid>
</item>
<item>
<title>(JavaScript) Creating Cookies</title>
<link>http://snipplr.com/view/1281/creating-cookies/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 03 Oct 2006 05:10:46 GMT</pubDate>
<guid>http://snipplr.com/view/1281/creating-cookies/</guid>
</item>
<item>
<title>(JavaScript) control structures</title>
<link>http://snipplr.com/view/1280/control-structures/</link>
<description><![CDATA[ <p>Source: controls @ howtocreate</p> ]]></description>
<pubDate>Tue, 03 Oct 2006 05:08:46 GMT</pubDate>
<guid>http://snipplr.com/view/1280/control-structures/</guid>
</item>
<item>
<title>(JavaScript) Arrays</title>
<link>http://snipplr.com/view/1279/arrays/</link>
<description><![CDATA[ <p>[1] To create an array, use either the new Array() or [] syntax.

[2] In JavaScript, arrays and objects are almost equivalent, and accessing a named cell of an array is the same as accessing a property of an object. If a cell of an array is called 'mycell', you could use either of these to access its contents

[3] faked multidimensional arrays</p> ]]></description>
<pubDate>Tue, 03 Oct 2006 05:04:43 GMT</pubDate>
<guid>http://snipplr.com/view/1279/arrays/</guid>
</item>
<item>
<title>(JavaScript) slider</title>
<link>http://snipplr.com/view/1277/slider/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 03 Oct 2006 05:00:00 GMT</pubDate>
<guid>http://snipplr.com/view/1277/slider/</guid>
</item>
<item>
<title>(JavaScript) jquery swapclass</title>
<link>http://snipplr.com/view/1276/jquery-swapclass/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 03 Oct 2006 04:33:51 GMT</pubDate>
<guid>http://snipplr.com/view/1276/jquery-swapclass/</guid>
</item>
</channel>
</rss>