<?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 09:57:54 +0000</lastBuildDate>
    <item>
      <title>(C#) Convert server side html control to string - housecor</title>
      <link>https://snipplr.com/view/60348/convert-server-side-html-control-to-string</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 30 Oct 2011 11:11:21 UTC</pubDate>
      <guid>https://snipplr.com/view/60348/convert-server-side-html-control-to-string</guid>
    </item>
    <item>
      <title>(C#) Require checkbox via customvalidator - housecor</title>
      <link>https://snipplr.com/view/52717/require-checkbox-via-customvalidator</link>
      <description>&lt;p&gt;RequiredFieldValidator doesn't support checkboxes, but a customvalidator does the trick.&lt;/p&gt;</description>
      <pubDate>Thu, 28 Apr 2011 11:17:25 UTC</pubDate>
      <guid>https://snipplr.com/view/52717/require-checkbox-via-customvalidator</guid>
    </item>
    <item>
      <title>(JavaScript) Javascript encapsualtion via the module pattern - housecor</title>
      <link>https://snipplr.com/view/52014/javascript-encapsualtion-via-the-module-pattern</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 13 Apr 2011 12:55:23 UTC</pubDate>
      <guid>https://snipplr.com/view/52014/javascript-encapsualtion-via-the-module-pattern</guid>
    </item>
    <item>
      <title>(JavaScript) Access server side C# variabes in javascript - housecor</title>
      <link>https://snipplr.com/view/51738/access-server-side-c-variabes-in-javascript</link>
      <description>&lt;p&gt;Options:&#13;
1. Write the desired values into a hidden field that contains json. Reference the hidden field by ID and parse the json to get the desired vars. &#13;
2. Call a webmethod that returns the values in json format&#13;
3. Write js via the code-behind that writes the variables to the page in a separate script tag. The js is placed inline in the page. Call: 			Page.ClientScript.RegisterClientScriptBlock. See example below.&#13;
&#13;
&#13;
So why is putting the entire javasscript in a string within the code-behind a lousy idea?&#13;
1. No code coloring&#13;
2. No syntax checking&#13;
3. Have to escape quotes which makes it hard to read and adds work&#13;
4. JS isn't cached since it's a string sitting within the html, unlike an attached .js file.&#13;
5. No separation of concerns. Client script should ideally be in a .js file to keep server side business logic from being intermingled with other concerns.&#13;
6. Inability to reuse. A useful .js file can be called from multiple pages. js stored in a string of a code-behind is page specific.&#13;
7. No IDE assistance for formatting or intellisense support&lt;/p&gt;</description>
      <pubDate>Fri, 08 Apr 2011 01:51:18 UTC</pubDate>
      <guid>https://snipplr.com/view/51738/access-server-side-c-variabes-in-javascript</guid>
    </item>
    <item>
      <title>(C#) Add js and css from codebehind - housecor</title>
      <link>https://snipplr.com/view/51287/add-js-and-css-from-codebehind</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 30 Mar 2011 01:43:24 UTC</pubDate>
      <guid>https://snipplr.com/view/51287/add-js-and-css-from-codebehind</guid>
    </item>
    <item>
      <title>(jQuery) jQuery event delegation - housecor</title>
      <link>https://snipplr.com/view/50757/jquery-event-delegation</link>
      <description>&lt;p&gt;Note that this is more efficient than binding an event to every individual TD. Plus, as a bonus, any new TD's added are bound with this method. When using event delegation you can add as many matching elements to the DOM as you like after the event is bound and they work too. e holds a reference to the element that was clicked.&lt;/p&gt;</description>
      <pubDate>Thu, 17 Mar 2011 06:00:46 UTC</pubDate>
      <guid>https://snipplr.com/view/50757/jquery-event-delegation</guid>
    </item>
    <item>
      <title>(SQL) Find column in SQL Server DB - housecor</title>
      <link>https://snipplr.com/view/49110/find-column-in-sql-server-db</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 17 Feb 2011 04:00:16 UTC</pubDate>
      <guid>https://snipplr.com/view/49110/find-column-in-sql-server-db</guid>
    </item>
    <item>
      <title>(C#) Convert int to string in LINQ to Entities Query - housecor</title>
      <link>https://snipplr.com/view/48072/convert-int-to-string-in-linq-to-entities-query</link>
      <description>&lt;p&gt;For some reason, methods in this class can actually be called to manipulate data in EF queries.&lt;/p&gt;</description>
      <pubDate>Sat, 29 Jan 2011 03:46:04 UTC</pubDate>
      <guid>https://snipplr.com/view/48072/convert-int-to-string-in-linq-to-entities-query</guid>
    </item>
    <item>
      <title>(C#) LINQ not in statement - housecor</title>
      <link>https://snipplr.com/view/47560/linq-not-in-statement</link>
      <description>&lt;p&gt;Note that .Except is a great option too, but only if you're dealing with a list of value types (it doesn't work with complex types unless you implement an iEqualityOperator)&lt;/p&gt;</description>
      <pubDate>Thu, 20 Jan 2011 04:31:45 UTC</pubDate>
      <guid>https://snipplr.com/view/47560/linq-not-in-statement</guid>
    </item>
    <item>
      <title>(C#) .Net go live checklist - housecor</title>
      <link>https://snipplr.com/view/47128/net-go-live-checklist</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 14 Jan 2011 14:37:32 UTC</pubDate>
      <guid>https://snipplr.com/view/47128/net-go-live-checklist</guid>
    </item>
    <item>
      <title>(JavaScript) Show preloader message when page is unloading - housecor</title>
      <link>https://snipplr.com/view/46891/show-preloader-message-when-page-is-unloading</link>
      <description>&lt;p&gt;This works cross browser. Merely using onclick on a submit button to show a preloader/ please wait dialog doesn't work in IE since it doesn't show images once the page is being unloaded.&lt;/p&gt;</description>
      <pubDate>Tue, 11 Jan 2011 04:03:34 UTC</pubDate>
      <guid>https://snipplr.com/view/46891/show-preloader-message-when-page-is-unloading</guid>
    </item>
    <item>
      <title>(C#) LINQ subquery group by to produce comma delimited results for a specified column - housecor</title>
      <link>https://snipplr.com/view/45253/linq-subquery-group-by-to-produce-comma-delimited-results-for-a-specified-column</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 04 Dec 2010 02:52:38 UTC</pubDate>
      <guid>https://snipplr.com/view/45253/linq-subquery-group-by-to-produce-comma-delimited-results-for-a-specified-column</guid>
    </item>
    <item>
      <title>(C#) Maxlength for textbox via server side regex - housecor</title>
      <link>https://snipplr.com/view/45194/maxlength-for-textbox-via-server-side-regex</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 03 Dec 2010 04:14:37 UTC</pubDate>
      <guid>https://snipplr.com/view/45194/maxlength-for-textbox-via-server-side-regex</guid>
    </item>
    <item>
      <title>(C#) MD5 hash method - housecor</title>
      <link>https://snipplr.com/view/45146/md5-hash-method</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 02 Dec 2010 12:56:16 UTC</pubDate>
      <guid>https://snipplr.com/view/45146/md5-hash-method</guid>
    </item>
    <item>
      <title>(C#) JQuery to parse array of objects sent from Webmethod - housecor</title>
      <link>https://snipplr.com/view/44737/jquery-to-parse-array-of-objects-sent-from-webmethod</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 24 Nov 2010 03:34:22 UTC</pubDate>
      <guid>https://snipplr.com/view/44737/jquery-to-parse-array-of-objects-sent-from-webmethod</guid>
    </item>
    <item>
      <title>(C#) LINQ outer join - housecor</title>
      <link>https://snipplr.com/view/44523/linq-outer-join</link>
      <description>&lt;p&gt;NOTE: When you do an outer join, every column selected that could be null from the join must have a ternary operator in the select statement.&lt;/p&gt;</description>
      <pubDate>Sun, 21 Nov 2010 02:11:52 UTC</pubDate>
      <guid>https://snipplr.com/view/44523/linq-outer-join</guid>
    </item>
    <item>
      <title>(C#) Find control recursively via extension method - housecor</title>
      <link>https://snipplr.com/view/44490/find-control-recursively-via-extension-method</link>
      <description>&lt;p&gt;And usage:&#13;
&#13;
protected void Page_Load(object sender, EventArgs e)&#13;
&#13;
{&#13;
&#13;
    Label theLabel = form1.FindControlR("ControlToFind") as Label;&#13;
&#13;
    if (theLabel != null)&#13;
&#13;
    {&#13;
&#13;
        theLabel.Text = "Found it!";&#13;
&#13;
    }&#13;
&#13;
}&lt;/p&gt;</description>
      <pubDate>Sat, 20 Nov 2010 09:53:37 UTC</pubDate>
      <guid>https://snipplr.com/view/44490/find-control-recursively-via-extension-method</guid>
    </item>
    <item>
      <title>(jQuery) JqueryUI sortable init/config call - housecor</title>
      <link>https://snipplr.com/view/44287/jqueryui-sortable-initconfig-call</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 17 Nov 2010 14:08:18 UTC</pubDate>
      <guid>https://snipplr.com/view/44287/jqueryui-sortable-initconfig-call</guid>
    </item>
    <item>
      <title>(C#) Save uploaded file - housecor</title>
      <link>https://snipplr.com/view/44045/save-uploaded-file</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 13 Nov 2010 03:34:18 UTC</pubDate>
      <guid>https://snipplr.com/view/44045/save-uploaded-file</guid>
    </item>
    <item>
      <title>(C#) Validate upload filetype - housecor</title>
      <link>https://snipplr.com/view/44011/validate-upload-filetype</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 12 Nov 2010 12:18:36 UTC</pubDate>
      <guid>https://snipplr.com/view/44011/validate-upload-filetype</guid>
    </item>
    <item>
      <title>(C#) Validate photo file upload - housecor</title>
      <link>https://snipplr.com/view/44010/validate-photo-file-upload</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 12 Nov 2010 12:16:58 UTC</pubDate>
      <guid>https://snipplr.com/view/44010/validate-photo-file-upload</guid>
    </item>
    <item>
      <title>(C#) Great looking client side sortable html table - housecor</title>
      <link>https://snipplr.com/view/43633/great-looking-client-side-sortable-html-table</link>
      <description>&lt;p&gt;This assumes you're using the jquery tablesorter plugin&lt;/p&gt;</description>
      <pubDate>Fri, 05 Nov 2010 14:28:16 UTC</pubDate>
      <guid>https://snipplr.com/view/43633/great-looking-client-side-sortable-html-table</guid>
    </item>
    <item>
      <title>(C#) Check checkboxes in databound checkboxlist - housecor</title>
      <link>https://snipplr.com/view/43536/check-checkboxes-in-databound-checkboxlist</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 04 Nov 2010 13:18:51 UTC</pubDate>
      <guid>https://snipplr.com/view/43536/check-checkboxes-in-databound-checkboxlist</guid>
    </item>
    <item>
      <title>(C#) Add default value for dropdownlist - housecor</title>
      <link>https://snipplr.com/view/43477/add-default-value-for-dropdownlist</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 03 Nov 2010 13:28:37 UTC</pubDate>
      <guid>https://snipplr.com/view/43477/add-default-value-for-dropdownlist</guid>
    </item>
    <item>
      <title>(C#) Bind click event from button in masterpage from a page that implements the master - housecor</title>
      <link>https://snipplr.com/view/43393/bind-click-event-from-button-in-masterpage-from-a-page-that-implements-the-master</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 02 Nov 2010 00:55:28 UTC</pubDate>
      <guid>https://snipplr.com/view/43393/bind-click-event-from-button-in-masterpage-from-a-page-that-implements-the-master</guid>
    </item>
    <item>
      <title>(C#) Nested Repeaters using onitemdatabound - housecor</title>
      <link>https://snipplr.com/view/43378/nested-repeaters-using-onitemdatabound</link>
      <description>&lt;p&gt;Used to create a tabbed structure with accordions inside. NOTE: OnItemDataBound is called for each section, so you may want to filter on the proper section:&#13;
&#13;
ListItemType lt = e.Item.ItemType;&#13;
  if(lt == ListItemType.Item)....&lt;/p&gt;</description>
      <pubDate>Mon, 01 Nov 2010 13:03:50 UTC</pubDate>
      <guid>https://snipplr.com/view/43378/nested-repeaters-using-onitemdatabound</guid>
    </item>
    <item>
      <title>(C#) Get Current URL and Segments. Also, get host or path. - housecor</title>
      <link>https://snipplr.com/view/43377/get-current-url-and-segments-also-get-host-or-path</link>
      <description>&lt;p&gt;Segments is a zero based array that starts with the first segment.&lt;/p&gt;</description>
      <pubDate>Mon, 01 Nov 2010 12:39:14 UTC</pubDate>
      <guid>https://snipplr.com/view/43377/get-current-url-and-segments-also-get-host-or-path</guid>
    </item>
    <item>
      <title>(C#) LINQ COALESCE to provide conditional when value is null in Anonymous type - housecor</title>
      <link>https://snipplr.com/view/43316/linq-coalesce-to-provide-conditional-when-value-is-null-in-anonymous-type</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 31 Oct 2010 05:10:57 UTC</pubDate>
      <guid>https://snipplr.com/view/43316/linq-coalesce-to-provide-conditional-when-value-is-null-in-anonymous-type</guid>
    </item>
    <item>
      <title>(C#) Resize uploaded image on the fly - housecor</title>
      <link>https://snipplr.com/view/43313/resize-uploaded-image-on-the-fly</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 31 Oct 2010 04:18:58 UTC</pubDate>
      <guid>https://snipplr.com/view/43313/resize-uploaded-image-on-the-fly</guid>
    </item>
    <item>
      <title>(C#) Late eager loading of a record using load() method in LINQ - housecor</title>
      <link>https://snipplr.com/view/43081/late-eager-loading-of-a-record-using-load-method-in-linq</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 28 Oct 2010 04:19:29 UTC</pubDate>
      <guid>https://snipplr.com/view/43081/late-eager-loading-of-a-record-using-load-method-in-linq</guid>
    </item>
    <item>
      <title>(C#) Break nested query out of main query in LINQ - housecor</title>
      <link>https://snipplr.com/view/43062/break-nested-query-out-of-main-query-in-linq</link>
      <description>&lt;p&gt;Note: An order operator in a subquery will be ignored. The main query controls ordering.&lt;/p&gt;</description>
      <pubDate>Thu, 28 Oct 2010 00:02:19 UTC</pubDate>
      <guid>https://snipplr.com/view/43062/break-nested-query-out-of-main-query-in-linq</guid>
    </item>
    <item>
      <title>(C#) Filtering EntityCollections in LINQ - housecor</title>
      <link>https://snipplr.com/view/43061/filtering-entitycollections-in-linq</link>
      <description>&lt;p&gt;Uses lambda and any operator to filter list.&lt;/p&gt;</description>
      <pubDate>Wed, 27 Oct 2010 23:59:15 UTC</pubDate>
      <guid>https://snipplr.com/view/43061/filtering-entitycollections-in-linq</guid>
    </item>
    <item>
      <title>(C#) Project values from an EntityCollection in LINQ - housecor</title>
      <link>https://snipplr.com/view/43060/project-values-from-an-entitycollection-in-linq</link>
      <description>&lt;p&gt;Uses a nested query to prject values from an entity collection.&lt;/p&gt;</description>
      <pubDate>Wed, 27 Oct 2010 23:57:38 UTC</pubDate>
      <guid>https://snipplr.com/view/43060/project-values-from-an-entitycollection-in-linq</guid>
    </item>
    <item>
      <title>(C#) Anonymous types as properties in LINQ - housecor</title>
      <link>https://snipplr.com/view/43059/anonymous-types-as-properties-in-linq</link>
      <description>&lt;p&gt;Notice that the property name declared (foo) is used later in the query for the ORDERBY operator and SELECT statement.&lt;/p&gt;</description>
      <pubDate>Wed, 27 Oct 2010 23:53:32 UTC</pubDate>
      <guid>https://snipplr.com/view/43059/anonymous-types-as-properties-in-linq</guid>
    </item>
    <item>
      <title>(C#) Naming a projected anonymous type in LINQ - housecor</title>
      <link>https://snipplr.com/view/43058/naming-a-projected-anonymous-type-in-linq</link>
      <description>&lt;p&gt;Note that C# doesn't allow naming in the SELECT statement. Must use the LET operator for this purpose.&lt;/p&gt;</description>
      <pubDate>Wed, 27 Oct 2010 23:46:48 UTC</pubDate>
      <guid>https://snipplr.com/view/43058/naming-a-projected-anonymous-type-in-linq</guid>
    </item>
    <item>
      <title>(C#) Sort Relationships in Entity Framework - housecor</title>
      <link>https://snipplr.com/view/42629/sort-relationships-in-entity-framework</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 21 Oct 2010 00:47:00 UTC</pubDate>
      <guid>https://snipplr.com/view/42629/sort-relationships-in-entity-framework</guid>
    </item>
    <item>
      <title>(JavaScript) Google API JS short call - housecor</title>
      <link>https://snipplr.com/view/42585/google-api-js-short-call</link>
      <description>&lt;p&gt;Be sure to call the exact version desired or the script is only cached for one hour!&#13;
&#13;
http://encosia.com/2009/10/11/do-you-know-about-this-undocumented-google-cdn-feature/&lt;/p&gt;</description>
      <pubDate>Wed, 20 Oct 2010 06:29:52 UTC</pubDate>
      <guid>https://snipplr.com/view/42585/google-api-js-short-call</guid>
    </item>
    <item>
      <title>(C#) Entity Framework include style join - housecor</title>
      <link>https://snipplr.com/view/42573/entity-framework-include-style-join</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 20 Oct 2010 01:52:49 UTC</pubDate>
      <guid>https://snipplr.com/view/42573/entity-framework-include-style-join</guid>
    </item>
    <item>
      <title>(C#) LINQ join to create anonymous type - housecor</title>
      <link>https://snipplr.com/view/42533/linq-join-to-create-anonymous-type</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 19 Oct 2010 11:45:14 UTC</pubDate>
      <guid>https://snipplr.com/view/42533/linq-join-to-create-anonymous-type</guid>
    </item>
    <item>
      <title>(C#) Eager loading in Entity Framework - housecor</title>
      <link>https://snipplr.com/view/42389/eager-loading-in-entity-framework</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 16 Oct 2010 07:42:49 UTC</pubDate>
      <guid>https://snipplr.com/view/42389/eager-loading-in-entity-framework</guid>
    </item>
    <item>
      <title>(SQL) SQL Server T-SQL stored procedure that takes a parameter - housecor</title>
      <link>https://snipplr.com/view/41840/sql-server-tsql-stored-procedure-that-takes-a-parameter</link>
      <description>&lt;p&gt;Loops through result set and performs a function row by row. Note, this example is contrived.&lt;/p&gt;</description>
      <pubDate>Fri, 08 Oct 2010 11:57:54 UTC</pubDate>
      <guid>https://snipplr.com/view/41840/sql-server-tsql-stored-procedure-that-takes-a-parameter</guid>
    </item>
    <item>
      <title>(C#) Webmethod called via jquery ajax - housecor</title>
      <link>https://snipplr.com/view/40946/webmethod-called-via-jquery-ajax</link>
      <description>&lt;p&gt;IMPORTANT: Be sure to clean the solution and rebuild after creating the WebMethod or you may get a 500 error.&lt;/p&gt;</description>
      <pubDate>Thu, 23 Sep 2010 11:40:11 UTC</pubDate>
      <guid>https://snipplr.com/view/40946/webmethod-called-via-jquery-ajax</guid>
    </item>
    <item>
      <title>(C#) Reference path outside/above web root - housecor</title>
      <link>https://snipplr.com/view/40945/reference-path-outsideabove-web-root</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 23 Sep 2010 11:20:01 UTC</pubDate>
      <guid>https://snipplr.com/view/40945/reference-path-outsideabove-web-root</guid>
    </item>
    <item>
      <title>(JavaScript) Umlimited arguments to function - housecor</title>
      <link>https://snipplr.com/view/40933/umlimited-arguments-to-function</link>
      <description>&lt;p&gt;Pass as many arguments as you wish. You can access them in the arguments array.&lt;/p&gt;</description>
      <pubDate>Thu, 23 Sep 2010 05:05:09 UTC</pubDate>
      <guid>https://snipplr.com/view/40933/umlimited-arguments-to-function</guid>
    </item>
    <item>
      <title>(JavaScript) Default parameters - housecor</title>
      <link>https://snipplr.com/view/40932/default-parameters</link>
      <description>&lt;p&gt;This sets b to 3 if b isn\'t passed. So all params all optional.&lt;/p&gt;</description>
      <pubDate>Thu, 23 Sep 2010 05:03:33 UTC</pubDate>
      <guid>https://snipplr.com/view/40932/default-parameters</guid>
    </item>
    <item>
      <title>(JavaScript) Javascript scope - housecor</title>
      <link>https://snipplr.com/view/40931/javascript-scope</link>
      <description>&lt;p&gt;There are two scopes in JavaScript: global and function. If you don\'t declare a variable (using var), it assumes global. \r\n\r\nVariables declared in functions have function scope.&lt;/p&gt;</description>
      <pubDate>Thu, 23 Sep 2010 05:01:56 UTC</pubDate>
      <guid>https://snipplr.com/view/40931/javascript-scope</guid>
    </item>
    <item>
      <title>(C#) Find control by type - housecor</title>
      <link>https://snipplr.com/view/40889/find-control-by-type</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 22 Sep 2010 11:10:29 UTC</pubDate>
      <guid>https://snipplr.com/view/40889/find-control-by-type</guid>
    </item>
    <item>
      <title>(C#) Reference databound value in webform - housecor</title>
      <link>https://snipplr.com/view/40888/reference-databound-value-in-webform</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 22 Sep 2010 11:01:07 UTC</pubDate>
      <guid>https://snipplr.com/view/40888/reference-databound-value-in-webform</guid>
    </item>
    <item>
      <title>(JavaScript) Format string as money - housecor</title>
      <link>https://snipplr.com/view/40536/format-string-as-money</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 15 Sep 2010 23:31:29 UTC</pubDate>
      <guid>https://snipplr.com/view/40536/format-string-as-money</guid>
    </item>
    <item>
      <title>(JavaScript) Enforce maxlength for all textareas on page - housecor</title>
      <link>https://snipplr.com/view/40504/enforce-maxlength-for-all-textareas-on-page</link>
      <description>&lt;p&gt;Just be sure to slap the div for the chars left message within the same div/p as the textarea so the dom walk works.&lt;/p&gt;</description>
      <pubDate>Wed, 15 Sep 2010 11:22:25 UTC</pubDate>
      <guid>https://snipplr.com/view/40504/enforce-maxlength-for-all-textareas-on-page</guid>
    </item>
  </channel>
</rss>
