<?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 21:15:24 +0000</lastBuildDate>
    <item>
      <title>(PHP) HTML Table to plain text - nigelnquande</title>
      <link>https://snipplr.com/view/84027/html-table-to-plain-text</link>
      <description>&lt;p&gt;Use PHP's DOM parser to convert a table into plain text (including links with images)&lt;/p&gt;</description>
      <pubDate>Tue, 16 Dec 2014 01:11:27 UTC</pubDate>
      <guid>https://snipplr.com/view/84027/html-table-to-plain-text</guid>
    </item>
    <item>
      <title>(JavaScript) Merge or unmerge lists of items depending on window size - jbernus</title>
      <link>https://snipplr.com/view/71515/merge-or-unmerge-lists-of-items-depending-on-window-size</link>
      <description>&lt;p&gt;For side by side ULs that become too wide on small screens/devices.&#13;
The following script let you merge or unmerge ULs depending on the size of the screen/device.&#13;
&#13;
Works with jQuery&lt;/p&gt;</description>
      <pubDate>Thu, 13 Jun 2013 23:02:02 UTC</pubDate>
      <guid>https://snipplr.com/view/71515/merge-or-unmerge-lists-of-items-depending-on-window-size</guid>
    </item>
    <item>
      <title>(JavaScript) Dynamic Table Generator - COBOLdinosaur</title>
      <link>https://snipplr.com/view/70654/dynamic-table-generator</link>
      <description>&lt;p&gt;The use of dynamic data acquisition on modern web sites and in a lot of intranet applications, sometimes means we have to build structures dynamically as data comes in from a feed or AJAX operations. The problem is not with the data, but rather that it is unstructured, or not appropriately tagged. The solution is to dynamically build the necessary structures to make the data presentable in a web page&lt;/p&gt;</description>
      <pubDate>Thu, 04 Apr 2013 07:15:15 UTC</pubDate>
      <guid>https://snipplr.com/view/70654/dynamic-table-generator</guid>
    </item>
    <item>
      <title>(JavaScript) Javascript DOM Create Element - flamboyanz</title>
      <link>https://snipplr.com/view/69973/javascript-dom-create-element</link>
      <description>&lt;p&gt;Javascript DOM Create Element&lt;/p&gt;</description>
      <pubDate>Mon, 18 Feb 2013 04:10:53 UTC</pubDate>
      <guid>https://snipplr.com/view/69973/javascript-dom-create-element</guid>
    </item>
    <item>
      <title>(jQuery) [jQuery Mobile] Refresh DOM after AJAX Call - goo</title>
      <link>https://snipplr.com/view/69377/jquery-mobile-refresh-dom-after-ajax-call</link>
      <description>&lt;p&gt;in jquery mobile, .html() not refresh DOM. Execute this function after any DOM change.&lt;/p&gt;</description>
      <pubDate>Mon, 07 Jan 2013 18:45:30 UTC</pubDate>
      <guid>https://snipplr.com/view/69377/jquery-mobile-refresh-dom-after-ajax-call</guid>
    </item>
    <item>
      <title>(jQuery) jQuery: Numbering an Unordered List - satie83</title>
      <link>https://snipplr.com/view/64909/jquery-numbering-an-unordered-list</link>
      <description>&lt;p&gt;Hereâ€™s a very simple script which adds numbers sequentially to an unordered list using jQuery&lt;/p&gt;</description>
      <pubDate>Thu, 17 May 2012 22:37:41 UTC</pubDate>
      <guid>https://snipplr.com/view/64909/jquery-numbering-an-unordered-list</guid>
    </item>
    <item>
      <title>(PHP) jQuery syle DOM navigation in PHP with phpQuery - FatFolderDesigner</title>
      <link>https://snipplr.com/view/63292/jquery-syle-dom-navigation-in-php-with-phpquery</link>
      <description>&lt;p&gt;Navigating the DOM in jQuery is incredibly simple and thats to phpQuery you can do the same in php. Below are some examples of how it's used, the key change bing that instead of $() you use pq(), and instead of a . you used -&gt;. Theres alot more details information at the link if your interested. Post questions/comments here or there.&#13;
&#13;
You can get the phpquery files, and well as read the manual at the google code page here: http://code.google.com/p/phpquery/&lt;/p&gt;</description>
      <pubDate>Mon, 13 Feb 2012 09:55:58 UTC</pubDate>
      <guid>https://snipplr.com/view/63292/jquery-syle-dom-navigation-in-php-with-phpquery</guid>
    </item>
    <item>
      <title>(JavaScript) Get DOM element via class and id selector, using Google Closure - cjcenizal</title>
      <link>https://snipplr.com/view/62931/get-dom-element-via-class-and-id-selector-using-google-closure</link>
      <description>&lt;p&gt;The Google Closure lets you get DOM elements with getElement( id ) and getElementByClass( class ).  This function combines the two to let you get elements similarly to the way jQuery does.  E.g. getElement( '#home .sidebar #links') returns the element with an id of 'links', within the element of class 'sidebar', within the element of id 'home'.&lt;/p&gt;</description>
      <pubDate>Tue, 31 Jan 2012 15:00:26 UTC</pubDate>
      <guid>https://snipplr.com/view/62931/get-dom-element-via-class-and-id-selector-using-google-closure</guid>
    </item>
    <item>
      <title>(PHP) Extract PitchFX from MLB.com - wa-rufio</title>
      <link>https://snipplr.com/view/61977/extract-pitchfx-from-mlbcom</link>
      <description>&lt;p&gt;Open PHP file and enter User Credentials for localhost.  The default dates are set to negotiate the 2011 season, but change the date variables to match your desired season data.  The start date should be the day before opening day, and the end date the last day of the regular season.  &#13;
&#13;
Append ignored attributes to conditional statement on line 81 to match your pitchfx table structure.&lt;/p&gt;</description>
      <pubDate>Mon, 19 Dec 2011 07:28:19 UTC</pubDate>
      <guid>https://snipplr.com/view/61977/extract-pitchfx-from-mlbcom</guid>
    </item>
    <item>
      <title>(JavaScript) Search for objects attached to the global JS object - richt</title>
      <link>https://snipplr.com/view/58681/search-for-objects-attached-to-the-global-js-object</link>
      <description>&lt;p&gt;Simple recursive function to find objects that match the value of str hanging anywhere off the global JS object (window).&lt;/p&gt;</description>
      <pubDate>Thu, 15 Sep 2011 00:15:22 UTC</pubDate>
      <guid>https://snipplr.com/view/58681/search-for-objects-attached-to-the-global-js-object</guid>
    </item>
    <item>
      <title>(JavaScript) isEmail Function - alberomo</title>
      <link>https://snipplr.com/view/58073/isemail-function</link>
      <description>&lt;p&gt;Check if user has intruded a real email address. Return true (real email) or false (fake email).&#13;
Arguments: Element from a form.&#13;
From book Dom Scripting by Jeremy Keith&lt;/p&gt;</description>
      <pubDate>Mon, 22 Aug 2011 00:27:59 UTC</pubDate>
      <guid>https://snipplr.com/view/58073/isemail-function</guid>
    </item>
    <item>
      <title>(JavaScript) isFilled (form element) Function - alberomo</title>
      <link>https://snipplr.com/view/58072/isfilled-form-element-function</link>
      <description>&lt;p&gt;Arguments: Element from a form.&#13;
Take that element and checks if is filled. If not, returns false. If is filled, returns true.&#13;
From book Dom Scripting by Jeremy Keith&lt;/p&gt;</description>
      <pubDate>Mon, 22 Aug 2011 00:15:36 UTC</pubDate>
      <guid>https://snipplr.com/view/58072/isfilled-form-element-function</guid>
    </item>
    <item>
      <title>(JavaScript) focusLebels Function - alberomo</title>
      <link>https://snipplr.com/view/58069/focuslebels-function</link>
      <description>&lt;p&gt;A JS function that put the focus in the form field associated to a label element whenever is clicked. The for atributte of the label element must match the id attribute of the associated form field.&#13;
It takes no arguments.&#13;
From book Dom Scripting by Jeremy Keith&lt;/p&gt;</description>
      <pubDate>Sun, 21 Aug 2011 20:05:42 UTC</pubDate>
      <guid>https://snipplr.com/view/58069/focuslebels-function</guid>
    </item>
    <item>
      <title>(Scala) Convert Scala XML to Java DOM - studioevoque</title>
      <link>https://snipplr.com/view/55854/convert-scala-xml-to-java-dom</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 29 Jun 2011 01:21:45 UTC</pubDate>
      <guid>https://snipplr.com/view/55854/convert-scala-xml-to-java-dom</guid>
    </item>
    <item>
      <title>(JavaScript) accessing the DOM of a page loaded in an iframe [javascript] [dom] [iframe] [for-twitter] - Thammas</title>
      <link>https://snipplr.com/view/50825/accessing-the-dom-of-a-page-loaded-in-an-iframe-javascript-dom-iframe-fortwitter</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 18 Mar 2011 22:43:42 UTC</pubDate>
      <guid>https://snipplr.com/view/50825/accessing-the-dom-of-a-page-loaded-in-an-iframe-javascript-dom-iframe-fortwitter</guid>
    </item>
    <item>
      <title>(jQuery) Element creation with jQuery - batamire</title>
      <link>https://snipplr.com/view/48512/element-creation-with-jquery</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 07 Feb 2011 22:25:34 UTC</pubDate>
      <guid>https://snipplr.com/view/48512/element-creation-with-jquery</guid>
    </item>
    <item>
      <title>(Other) Cross browser scrollTop - madr</title>
      <link>https://snipplr.com/view/45784/cross-browser-scrolltop</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 15 Dec 2010 21:22:07 UTC</pubDate>
      <guid>https://snipplr.com/view/45784/cross-browser-scrolltop</guid>
    </item>
    <item>
      <title>(jQuery) Load external scripts FIRST for injected DOM HTML content - harikaram</title>
      <link>https://snipplr.com/view/43449/load-external-scripts-first-for-injected-dom-html-content</link>
      <description>&lt;p&gt;When injecting via jQuery HTML content which contains script tags referencing external scripts, which are then referenced via scripting elsewhere in the injected HTML, some browsers (Chrome) will not wait for the external scripts to load causing the internal scripts to throw an error.  This code parses the external script tags, loads them seperately and then calls the callback function passing the given HTML minus the external script tags for you to inject.&#13;
---------&#13;
UPDATE:  I've made this considerably more complex after some IE problems (really!).  Hope it helps someone out...&lt;/p&gt;</description>
      <pubDate>Wed, 03 Nov 2010 03:07:50 UTC</pubDate>
      <guid>https://snipplr.com/view/43449/load-external-scripts-first-for-injected-dom-html-content</guid>
    </item>
    <item>
      <title>(jQuery) Jquery Window Onload - creativeboulder</title>
      <link>https://snipplr.com/view/42677/jquery-window-onload</link>
      <description>&lt;p&gt;This snippet of code is probably the most common and _valuable_ in the world of jQuery.&lt;/p&gt;</description>
      <pubDate>Thu, 21 Oct 2010 14:39:06 UTC</pubDate>
      <guid>https://snipplr.com/view/42677/jquery-window-onload</guid>
    </item>
    <item>
      <title>(jQuery) jQuery DOM resize - arif</title>
      <link>https://snipplr.com/view/40797/jquery-dom-resize</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 21 Sep 2010 02:36:39 UTC</pubDate>
      <guid>https://snipplr.com/view/40797/jquery-dom-resize</guid>
    </item>
    <item>
      <title>(JavaScript) prototype check if element exists - dmistriotis</title>
      <link>https://snipplr.com/view/40420/prototype-check-if-element-exists</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 13 Sep 2010 20:31:35 UTC</pubDate>
      <guid>https://snipplr.com/view/40420/prototype-check-if-element-exists</guid>
    </item>
    <item>
      <title>(JavaScript) Create new DOM element - stephcode</title>
      <link>https://snipplr.com/view/39978/create-new-dom-element</link>
      <description>&lt;p&gt;Thankfully, Sjoerd Visscher mentioned an interesting technique  that could be used to force IE to use the specified CSS styling. Specifically, once you create a new DOM element (of the same name as the one in the document) all styling is applied. [...] This is very important. This now means that we can provide CSS styling for undefined HTML 5 element and allow Internet Explorer to handle it gracefully.&lt;/p&gt;</description>
      <pubDate>Sat, 04 Sep 2010 01:48:44 UTC</pubDate>
      <guid>https://snipplr.com/view/39978/create-new-dom-element</guid>
    </item>
    <item>
      <title>(JavaScript) Check if DOM Element is Fully Visible - iloveitaly</title>
      <link>https://snipplr.com/view/39594/check-if-dom-element-is-fully-visible</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 27 Aug 2010 09:36:38 UTC</pubDate>
      <guid>https://snipplr.com/view/39594/check-if-dom-element-is-fully-visible</guid>
    </item>
    <item>
      <title>(Groovy) Rhino env.js testing example - cadrlife</title>
      <link>https://snipplr.com/view/38607/rhino-envjs-testing-example</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 06 Aug 2010 13:10:27 UTC</pubDate>
      <guid>https://snipplr.com/view/38607/rhino-envjs-testing-example</guid>
    </item>
    <item>
      <title>(PHP) DOMDocument - prevent empty tags // retrieve node without xml declaration - iroybot</title>
      <link>https://snipplr.com/view/34796/domdocument--prevent-empty-tags--retrieve-node-without-xml-declaration</link>
      <description>&lt;p&gt;the LIBXML parameter is what this snippet is about. Also this is one way to retrieve XML without having a  XML-declaration prepended &lt;?xml&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 19 May 2010 05:19:20 UTC</pubDate>
      <guid>https://snipplr.com/view/34796/domdocument--prevent-empty-tags--retrieve-node-without-xml-declaration</guid>
    </item>
    <item>
      <title>(JavaScript) Javascript DOM - getElementsByClassName - jasonseney</title>
      <link>https://snipplr.com/view/32961/javascript-dom--getelementsbyclassname</link>
      <description>&lt;p&gt;Similar to [Get Elements by Class Name]( http://snipplr.com/view/1696/get-elements-by-class-name/), but with optional "tag" parameter. Performance is increased by first retrieving the desired tag if available.&lt;/p&gt;</description>
      <pubDate>Fri, 23 Apr 2010 09:29:36 UTC</pubDate>
      <guid>https://snipplr.com/view/32961/javascript-dom--getelementsbyclassname</guid>
    </item>
    <item>
      <title>(Java) DOM Parser demo using DocumentBuilder. - PravinChk</title>
      <link>https://snipplr.com/view/31029/dom-parser-demo-using-documentbuilder</link>
      <description>&lt;p&gt;Code is to demonstrate the use of DocumentBuilder to parse the XML file. And retrieve the data from it.&lt;/p&gt;</description>
      <pubDate>Wed, 07 Apr 2010 03:39:33 UTC</pubDate>
      <guid>https://snipplr.com/view/31029/dom-parser-demo-using-documentbuilder</guid>
    </item>
    <item>
      <title>(JavaScript) SimpleSelector, Javascript DOM selector - freelancephp</title>
      <link>https://snipplr.com/view/30508/simpleselector-javascript-dom-selector</link>
      <description>&lt;p&gt;SimpleSelector is a small DOM selector object with support for the most used selectors. It's also the default selector for the jLim JavaScript framework.&#13;
&#13;
Why use SimpleSelector?&#13;
- very small, less than 2kb minified&#13;
- easy to use with $$()&#13;
- no overhead, no functions you hardly ever use&#13;
- ideal for smaller websites&lt;/p&gt;</description>
      <pubDate>Tue, 30 Mar 2010 04:53:15 UTC</pubDate>
      <guid>https://snipplr.com/view/30508/simpleselector-javascript-dom-selector</guid>
    </item>
    <item>
      <title>(JavaScript) Javascript DOM - Create Element - jasonseney</title>
      <link>https://snipplr.com/view/30037/javascript-dom--create-element</link>
      <description>&lt;p&gt;Basic create element and append it too another element.&lt;/p&gt;</description>
      <pubDate>Fri, 19 Mar 2010 15:38:59 UTC</pubDate>
      <guid>https://snipplr.com/view/30037/javascript-dom--create-element</guid>
    </item>
    <item>
      <title>(JavaScript) YUI - Determine when the DOM is ready to be used - azulcm</title>
      <link>https://snipplr.com/view/29687/yui--determine-when-the-dom-is-ready-to-be-used</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 12 Mar 2010 11:19:33 UTC</pubDate>
      <guid>https://snipplr.com/view/29687/yui--determine-when-the-dom-is-ready-to-be-used</guid>
    </item>
    <item>
      <title>(JavaScript) Light (4kb mini-jQuery) - freelancephp</title>
      <link>https://snipplr.com/view/29083/light-4kb-minijquery</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 01 Mar 2010 16:47:11 UTC</pubDate>
      <guid>https://snipplr.com/view/29083/light-4kb-minijquery</guid>
    </item>
    <item>
      <title>(JavaScript) getElementBySimilarId - erintechspired</title>
      <link>https://snipplr.com/view/28252/getelementbysimilarid</link>
      <description>&lt;p&gt;A simple, non-recursive function that I use to return the first element with an ID that contains a certain ID string. &#13;
Sometimes, APS.NET appends the Naming Container ID to the IDs of controls, and in instances where the ClientID of a control you want is not available, you can use this script to find the element you want by similar id. &#13;
Dirty, but works most of the time for me.&lt;/p&gt;</description>
      <pubDate>Fri, 12 Feb 2010 13:37:25 UTC</pubDate>
      <guid>https://snipplr.com/view/28252/getelementbysimilarid</guid>
    </item>
    <item>
      <title>(PHP) DOMElement outerHTML - Znupi</title>
      <link>https://snipplr.com/view/23561/domelement-outerhtml</link>
      <description>&lt;p&gt;Gets the outerHTML of a DOMElement. For a more optimal version check the URL.&lt;/p&gt;</description>
      <pubDate>Sun, 22 Nov 2009 11:16:00 UTC</pubDate>
      <guid>https://snipplr.com/view/23561/domelement-outerhtml</guid>
    </item>
    <item>
      <title>(PHP) Easy scraping and HTML parsing with PHP5 and XPath - adamcoulombe</title>
      <link>https://snipplr.com/view/22188/easy-scraping-and-html-parsing-with-php5-and-xpath</link>
      <description>&lt;p&gt;This example uses file_get_contents to retrieve remote HTML. From there, we can parse through it using PHP5's DOMDocument and DOMXpath. XPath Queries are easy to create using the Firefox extension "XPather"&lt;/p&gt;</description>
      <pubDate>Fri, 30 Oct 2009 13:53:10 UTC</pubDate>
      <guid>https://snipplr.com/view/22188/easy-scraping-and-html-parsing-with-php5-and-xpath</guid>
    </item>
    <item>
      <title>(JavaScript) JS screen &amp; browser dimensions - rwczippy</title>
      <link>https://snipplr.com/view/20891/js-screen--browser-dimensions</link>
      <description>&lt;p&gt;pretty basic; dimensions of screen and browser display window&lt;/p&gt;</description>
      <pubDate>Fri, 09 Oct 2009 11:03:47 UTC</pubDate>
      <guid>https://snipplr.com/view/20891/js-screen--browser-dimensions</guid>
    </item>
    <item>
      <title>(JavaScript) View IE generated source - bionic</title>
      <link>https://snipplr.com/view/20013/view-ie-generated-source</link>
      <description>&lt;p&gt;Go to page, then place code in address bar and generated code will be shown in new window.&lt;/p&gt;</description>
      <pubDate>Tue, 22 Sep 2009 04:03:24 UTC</pubDate>
      <guid>https://snipplr.com/view/20013/view-ie-generated-source</guid>
    </item>
    <item>
      <title>(JavaScript) Disable and enable a text input in Firefox - cyberhobo</title>
      <link>https://snipplr.com/view/19181/disable-and-enable-a-text-input-in-firefox</link>
      <description>&lt;p&gt;I just noticed in Firefox 3.5.2 that setting `disabled = true` for a focused text input seems to make it impossible to re-focus after setting `disabled = false`. The solution is to blur it before disabling.&lt;/p&gt;</description>
      <pubDate>Wed, 02 Sep 2009 12:49:15 UTC</pubDate>
      <guid>https://snipplr.com/view/19181/disable-and-enable-a-text-input-in-firefox</guid>
    </item>
    <item>
      <title>(JavaScript) Focus first 'focus'able form field on load (DOM) - neoprolog</title>
      <link>https://snipplr.com/view/18876/focus-first-focusable-form-field-on-load-dom</link>
      <description>&lt;p&gt;Usage: &#13;
&#13;
//any element&#13;
window.onload = function(){&#13;
    focusFirstInput();&#13;
}&#13;
&#13;
or &#13;
&#13;
// form elements under 'content-body'&#13;
window.onload = function(){&#13;
    focusFirstInput('content-body');&#13;
}&lt;/p&gt;</description>
      <pubDate>Wed, 26 Aug 2009 17:58:31 UTC</pubDate>
      <guid>https://snipplr.com/view/18876/focus-first-focusable-form-field-on-load-dom</guid>
    </item>
    <item>
      <title>(jQuery) Match Elements Even When DOM Changes - Meander365</title>
      <link>https://snipplr.com/view/17880/match-elements-even-when-dom-changes</link>
      <description>&lt;p&gt;If you want to trigger an event on an matched element and that element may be introduced into the DOM from an Ajax request, you can still match against it by using the livequery plugin and the following code.&lt;/p&gt;</description>
      <pubDate>Tue, 04 Aug 2009 07:03:19 UTC</pubDate>
      <guid>https://snipplr.com/view/17880/match-elements-even-when-dom-changes</guid>
    </item>
    <item>
      <title>(PHP) Remove DOM Node from XML - mikeevans</title>
      <link>https://snipplr.com/view/17382/remove-dom-node-from-xml</link>
      <description>&lt;p&gt;Manipulates XML nodes using PHP's Dom library. Includes XPath navigation, child manipulation, and deletion of current document.&lt;/p&gt;</description>
      <pubDate>Thu, 23 Jul 2009 09:57:24 UTC</pubDate>
      <guid>https://snipplr.com/view/17382/remove-dom-node-from-xml</guid>
    </item>
    <item>
      <title>(PHP) Purge event handlers from a DOM element - iTony</title>
      <link>https://snipplr.com/view/16303/purge-event-handlers-from-a-dom-element</link>
      <description>&lt;p&gt;Memory leakage in IE6/7 if the event handlers are not purged before deleting an element.&lt;/p&gt;</description>
      <pubDate>Thu, 25 Jun 2009 09:34:33 UTC</pubDate>
      <guid>https://snipplr.com/view/16303/purge-event-handlers-from-a-dom-element</guid>
    </item>
    <item>
      <title>(JavaScript) jQuery bookmarklet: find duplicate ID's on the page - krunkosaurus</title>
      <link>https://snipplr.com/view/14717/jquery-bookmarklet-find-duplicate-ids-on-the-page</link>
      <description>&lt;p&gt;&lt;a href="javascript:(function(){var%20ids=[];jQuery('*').each(function(){if(this.id&amp;&amp;this.id!==''){if(ids[this.id]){console.log('duplicate%20id%20found:%20'+this.id,this,ids[this.id])}else{ids[this.id]=this}}});})();"&gt;Find duplicate IDs&lt;/a&gt; (drag me to your tookbar).&#13;
&#13;
Requires Firebug and jQuery on the page.&lt;/p&gt;</description>
      <pubDate>Mon, 04 May 2009 18:10:33 UTC</pubDate>
      <guid>https://snipplr.com/view/14717/jquery-bookmarklet-find-duplicate-ids-on-the-page</guid>
    </item>
    <item>
      <title>(C#) Append HTML to a div - hobeau</title>
      <link>https://snipplr.com/view/14394/append-html-to-a-div</link>
      <description>&lt;p&gt;Append html to a div tag (using System.Web.UI.HtmlControls)&lt;/p&gt;</description>
      <pubDate>Fri, 24 Apr 2009 21:21:20 UTC</pubDate>
      <guid>https://snipplr.com/view/14394/append-html-to-a-div</guid>
    </item>
    <item>
      <title>(jQuery) Modify DOM elements of a print page with jQuery code using Firebug - HubertGaulin</title>
      <link>https://snipplr.com/view/13886/modify-dom-elements-of-a-print-page-with-jquery-code-using-firebug</link>
      <description>&lt;p&gt;Example: &#13;
&#13;
Add the following ccs '@media print { body { font-size: 12pt } }' to the document.&lt;/p&gt;</description>
      <pubDate>Wed, 08 Apr 2009 13:15:47 UTC</pubDate>
      <guid>https://snipplr.com/view/13886/modify-dom-elements-of-a-print-page-with-jquery-code-using-firebug</guid>
    </item>
    <item>
      <title>(JavaScript) getComputedStyle for IE - Jman</title>
      <link>https://snipplr.com/view/13523/getcomputedstyle-for-ie</link>
      <description>&lt;p&gt;fix for IE, adds getComputedStyle method for the object window and getPropertyValue method for the object, which returns getComputedStyle&lt;/p&gt;</description>
      <pubDate>Sat, 28 Mar 2009 01:49:54 UTC</pubDate>
      <guid>https://snipplr.com/view/13523/getcomputedstyle-for-ie</guid>
    </item>
    <item>
      <title>(jQuery) Add table row to the bottom of a table - 1man</title>
      <link>https://snipplr.com/view/13326/add-table-row-to-the-bottom-of-a-table</link>
      <description>&lt;p&gt;Great little snippit to add a &lt;tr&gt; to the bottom of a table. Note the use of the context in the jQuery e.g var n = $('tr:last td', this).length; Will have to use this in the future, very good to know!&lt;/p&gt;</description>
      <pubDate>Fri, 20 Mar 2009 12:53:48 UTC</pubDate>
      <guid>https://snipplr.com/view/13326/add-table-row-to-the-bottom-of-a-table</guid>
    </item>
    <item>
      <title>(JavaScript) Find Viewport Height / Width, crossbrowser: - ShiftyP</title>
      <link>https://snipplr.com/view/13129/find-viewport-height--width-crossbrowser</link>
      <description>&lt;p&gt;A little bit of browser detection and some functions to get the viewport height and width, crossbrowser.&lt;/p&gt;</description>
      <pubDate>Sun, 15 Mar 2009 14:45:37 UTC</pubDate>
      <guid>https://snipplr.com/view/13129/find-viewport-height--width-crossbrowser</guid>
    </item>
    <item>
      <title>(PHP) Find All The Links On A Page - Unreal</title>
      <link>https://snipplr.com/view/12678/find-all-the-links-on-a-page</link>
      <description>&lt;p&gt;The basis to a spider.&lt;/p&gt;</description>
      <pubDate>Sat, 28 Feb 2009 18:59:43 UTC</pubDate>
      <guid>https://snipplr.com/view/12678/find-all-the-links-on-a-page</guid>
    </item>
    <item>
      <title>(JavaScript) Exception manager for DOM event handlers - no more silent failures - miohtama</title>
      <link>https://snipplr.com/view/10137/exception-manager-for-dom-event-handlers--no-more-silent-failures</link>
      <description>&lt;p&gt;It is utterly annoying when DOM event handler exceptions fail silently with Firebug. This package fixes this common problem.&lt;/p&gt;</description>
      <pubDate>Fri, 28 Nov 2008 19:11:42 UTC</pubDate>
      <guid>https://snipplr.com/view/10137/exception-manager-for-dom-event-handlers--no-more-silent-failures</guid>
    </item>
    <item>
      <title>(Java) Writing a DOM Document to an XML File - monkey103</title>
      <link>https://snipplr.com/view/9538/writing-a-dom-document-to-an-xml-file</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 06 Nov 2008 13:13:00 UTC</pubDate>
      <guid>https://snipplr.com/view/9538/writing-a-dom-document-to-an-xml-file</guid>
    </item>
  </channel>
</rss>
