<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr</title>
<link>http://snipplr.com/language/javascript/tags/object</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Tue, 02 Dec 2008 02:47:12 GMT</pubDate>
<item>
<title>(JavaScript) JavaScript Object Inheritance - wizard04</title>
<link>http://snipplr.com/view/8146/javascript-object-inheritance/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 02 Sep 2008 10:48:31 GMT</pubDate>
<guid>http://snipplr.com/view/8146/javascript-object-inheritance/</guid>
</item>
<item>
<title>(JavaScript) Return Object By ID - ezerick</title>
<link>http://snipplr.com/view/6756/return-object-by-id/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 17 Jun 2008 18:55:51 GMT</pubDate>
<guid>http://snipplr.com/view/6756/return-object-by-id/</guid>
</item>
<item>
<title>(JavaScript) Debug object - wizard04</title>
<link>http://snipplr.com/view/6752/debug-object/</link>
<description><![CDATA[ <p>An object including a few helpful functions for debugging. Functions displaying popups or alerts are limited to a certain number of consecutive times before asking to continue, in case they end up being called in an endless loop or something.</p> ]]></description>
<pubDate>Tue, 17 Jun 2008 13:14:26 GMT</pubDate>
<guid>http://snipplr.com/view/6752/debug-object/</guid>
</item>
<item>
<title>(JavaScript) Javascript: Private object with a public accessor - twoism</title>
<link>http://snipplr.com/view/6064/javascript-private-object-with-a-public-accessor/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 30 Apr 2008 12:12:09 GMT</pubDate>
<guid>http://snipplr.com/view/6064/javascript-private-object-with-a-public-accessor/</guid>
</item>
<item>
<title>(JavaScript) Get Object Properties - Abe</title>
<link>http://snipplr.com/view/5520/get-object-properties/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 21 Mar 2008 13:07:01 GMT</pubDate>
<guid>http://snipplr.com/view/5520/get-object-properties/</guid>
</item>
<item>
<title>(JavaScript) Accessing Arguments Using the Arguments Object - 1man</title>
<link>http://snipplr.com/view/4239/accessing-arguments-using-the-arguments-object/</link>
<description><![CDATA[ <p>Every function has an object called the arguments object. This is an object that contains all the arguments that were passed to the function. The example below shows how to access these. Very rarely used but useful to know. Note: it may look like an array, but it's better to think of it as an object with numbered properties.</p> ]]></description>
<pubDate>Sun, 02 Dec 2007 06:50:07 GMT</pubDate>
<guid>http://snipplr.com/view/4239/accessing-arguments-using-the-arguments-object/</guid>
</item>
<item>
<title>(JavaScript) Basic Object Creation - 1man</title>
<link>http://snipplr.com/view/3629/basic-object-creation/</link>
<description><![CDATA[ <p>Create a simple object and add properties and a method. Note where the object is parsed (not from top to bottom).</p> ]]></description>
<pubDate>Tue, 04 Sep 2007 03:27:56 GMT</pubDate>
<guid>http://snipplr.com/view/3629/basic-object-creation/</guid>
</item>
<item>
<title>(JavaScript) clone - remysharp</title>
<link>http://snipplr.com/view/3357/clone/</link>
<description><![CDATA[ <p>Clones and object (associative array - not arrays).  Goes deep.

Required sometimes when you need to keep the original object intact, i.e. when you pass an object in to a function and modify it in the function - the original would change.</p> ]]></description>
<pubDate>Tue, 24 Jul 2007 03:06:16 GMT</pubDate>
<guid>http://snipplr.com/view/3357/clone/</guid>
</item>
<item>
<title>(JavaScript) Toggle value of nested property - noah</title>
<link>http://snipplr.com/view/3251/toggle-value-of-nested-property/</link>
<description><![CDATA[ <p>I feel like I once found an elegant way of setting nested properties without using eval().  However i can't find that code, and atm this is the best I can do.</p> ]]></description>
<pubDate>Sun, 08 Jul 2007 10:58:49 GMT</pubDate>
<guid>http://snipplr.com/view/3251/toggle-value-of-nested-property/</guid>
</item>
<item>
<title>(JavaScript) keys: get an array of all property names in an object - noah</title>
<link>http://snipplr.com/view/2841/keys-get-an-array-of-all-property-names-in-an-object/</link>
<description><![CDATA[ <p>do the same thing as the Perl "keys" subroutine</p> ]]></description>
<pubDate>Mon, 11 Jun 2007 08:56:49 GMT</pubDate>
<guid>http://snipplr.com/view/2841/keys-get-an-array-of-all-property-names-in-an-object/</guid>
</item>
<item>
<title>(JavaScript) Accept a parameter that is /either/ a DOM element /or/ the ID of a DOM element. - noah</title>
<link>http://snipplr.com/view/2710/accept-a-parameter-that-is-either-a-dom-element-or-the-id-of-a-dom-element/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 24 May 2007 13:40:48 GMT</pubDate>
<guid>http://snipplr.com/view/2710/accept-a-parameter-that-is-either-a-dom-element-or-the-id-of-a-dom-element/</guid>
</item>
<item>
<title>(JavaScript) Does an object have a specific property? - noah</title>
<link>http://snipplr.com/view/2708/does-an-object-have-a-specific-property/</link>
<description><![CDATA[ <p>This is a very easy way to check if an object has a given property.  Easier than checking if (obj.foo != null) or some such, which is what I've been doing :(  From Flanagan, 5th ed, p. 108.; but I actually ran across it in the source of this page: http://www.gtalbot.org/DHTMLSection/DynamicOpacity.html, thanks to Gerard Talbot on clj.</p> ]]></description>
<pubDate>Thu, 24 May 2007 09:24:08 GMT</pubDate>
<guid>http://snipplr.com/view/2708/does-an-object-have-a-specific-property/</guid>
</item>
<item>
<title>(JavaScript) UFO - Unobtrusive Flash Objects - jonhenshaw</title>
<link>http://snipplr.com/view/2653/ufo--unobtrusive-flash-objects/</link>
<description><![CDATA[ <p>Use this javascript to display Flash movies. It's IE and SEO friendly. Requires HTML which can be found here: http://snipplr.com/view/2649/ufo--unobtrusive-flash-objects/</p> ]]></description>
<pubDate>Wed, 16 May 2007 08:12:27 GMT</pubDate>
<guid>http://snipplr.com/view/2653/ufo--unobtrusive-flash-objects/</guid>
</item>
<item>
<title>(JavaScript) Remove IE7 activex borders - clapfouine</title>
<link>http://snipplr.com/view/2374/remove-ie7-activex-borders/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 22 Mar 2007 03:50:50 GMT</pubDate>
<guid>http://snipplr.com/view/2374/remove-ie7-activex-borders/</guid>
</item>
<item>
<title>(JavaScript) Linking Objects &amp;amp; Deleting Info in Objects - 1man</title>
<link>http://snipplr.com/view/2365/linking-objects--deleting-info-in-objects/</link>
<description><![CDATA[ <p>Shows you how to link 2 objects together via the object function. If a value isn't found in the object, it will look for it in the linked object.</p> ]]></description>
<pubDate>Tue, 20 Mar 2007 09:56:09 GMT</pubDate>
<guid>http://snipplr.com/view/2365/linking-objects--deleting-info-in-objects/</guid>
</item>
<item>
<title>(JavaScript) Extending Objects and Custom Objects using .prototype - 1man</title>
<link>http://snipplr.com/view/2364/extending-objects-and-custom-objects-using-prototype/</link>
<description><![CDATA[ <p>Extend a custom object, and a pre-defined object(e.g. string) using .prototype available in JS.</p> ]]></description>
<pubDate>Tue, 20 Mar 2007 08:02:15 GMT</pubDate>
<guid>http://snipplr.com/view/2364/extending-objects-and-custom-objects-using-prototype/</guid>
</item>
<item>
<title>(JavaScript) Ajax getHTTPObject function - 1man</title>
<link>http://snipplr.com/view/2300/ajax-gethttpobject-function/</link>
<description><![CDATA[ <p>This functions allows you to create a new XMLHTTPRequest, it checks to see if the browser supports each method, if not it returns false.</p> ]]></description>
<pubDate>Mon, 12 Mar 2007 05:37:54 GMT</pubDate>
<guid>http://snipplr.com/view/2300/ajax-gethttpobject-function/</guid>
</item>
<item>
<title>(JavaScript) type.of() - a more specific typeof() - rolandog</title>
<link>http://snipplr.com/view/1996/typeof--a-more-specific-typeof/</link>
<description><![CDATA[ <p>Helps identify correctly the type of whatever you put as an argument. This was adapted from http://www.planetpdf.com/developer/article.asp?ContentID=testing_for_object_types_in_ja</p> ]]></description>
<pubDate>Wed, 17 Jan 2007 21:00:28 GMT</pubDate>
<guid>http://snipplr.com/view/1996/typeof--a-more-specific-typeof/</guid>
</item>
<item>
<title>(JavaScript) Javascript : Marcar Navegación (Varios Items) - nicolaspar</title>
<link>http://snipplr.com/view/1403/javascript--marcar-navegacin-varios-items/</link>
<description><![CDATA[ <p>javascript in_array object frame.
Usar:

Mediceau.Navegacion.marcar(['nav1','nav2'])
...
_--Nav 1
_--Nav 2
_--Nav 3
_--Nav 4</p> ]]></description>
<pubDate>Fri, 13 Oct 2006 07:08:25 GMT</pubDate>
<guid>http://snipplr.com/view/1403/javascript--marcar-navegacin-varios-items/</guid>
</item>
<item>
<title>(JavaScript) Creating objects - mlange</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>
</channel>
</rss>