<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr - Huskie</title>
<link>http://snipplr.com/users/Huskie</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Tue, 18 Jun 2013 17:18:51 GMT</pubDate>
<item>
<title>(CSS) Add box shadow on bottom of element only</title>
<link>http://snipplr.com/view/68646/add-box-shadow-on-bottom-of-element-only/</link>
<description><![CDATA[ <p>CSS code to add a CSS3 box shadow to the bottom of an element only.</p> ]]></description>
<pubDate>Mon, 19 Nov 2012 22:54:21 GMT</pubDate>
<guid>http://snipplr.com/view/68646/add-box-shadow-on-bottom-of-element-only/</guid>
</item>
<item>
<title>(jQuery) Speed up jQuery UI Autocomplete Combobox with very large select lists</title>
<link>http://snipplr.com/view/64623/speed-up-jquery-ui-autocomplete-combobox-with-very-large-select-lists/</link>
<description><![CDATA[ <p>With the current combobox implementation, the full list is emptied and re-rendered every time you expand the dropdown. Also you are stuck with setting the minLength to 0, because it has to do an empty search to get the full list.

Here is my own implementation extending the autocomplete widget. It renders the full list just once, and reuses it whenever the dropdown button is clicked. This also removes the dependence of the option minLength = 0. It also works with arrays, and ajax as list source. Also if you have multiple large list, the widget initialization is added to a queue so it can run in the background, and not freeze the browser.</p> ]]></description>
<pubDate>Tue, 17 Apr 2012 19:56:43 GMT</pubDate>
<guid>http://snipplr.com/view/64623/speed-up-jquery-ui-autocomplete-combobox-with-very-large-select-lists/</guid>
</item>
<item>
<title>(jQuery) Clear all text fields on focus based on original value with single function</title>
<link>http://snipplr.com/view/64478/clear-all-text-fields-on-focus-based-on-original-value-with-single-function/</link>
<description><![CDATA[ <p>Clear all text fields on focus based on original value with single function. The code checks for a 'title' attribute on each input with class 'text' and compares this to the current value of the field.</p> ]]></description>
<pubDate>Tue, 10 Apr 2012 19:29:59 GMT</pubDate>
<guid>http://snipplr.com/view/64478/clear-all-text-fields-on-focus-based-on-original-value-with-single-function/</guid>
</item>
<item>
<title>(jQuery) Remove hyperlink outline in IE6 &amp;amp; IE7 with jQuery</title>
<link>http://snipplr.com/view/64395/remove-hyperlink-outline-in-ie6--ie7-with-jquery/</link>
<description><![CDATA[ <p>IE6 and IE7 don't respect the 'outline' attribute for hyperlinks. This jQuery snippet removes the annoying outline in these browsers.</p> ]]></description>
<pubDate>Fri, 06 Apr 2012 22:58:41 GMT</pubDate>
<guid>http://snipplr.com/view/64395/remove-hyperlink-outline-in-ie6--ie7-with-jquery/</guid>
</item>
<item>
<title>(jQuery) Google CDN jQuery loading fallback</title>
<link>http://snipplr.com/view/62495/google-cdn-jquery-loading-fallback/</link>
<description><![CDATA[ <p>This code snippet fetches the very latest minified version of jQuery from Google's CDN. If this is not available, we revert to a locally stored version (current version at time of publish was 1.7.1 - update this to suit going forward).</p> ]]></description>
<pubDate>Thu, 12 Jan 2012 02:47:13 GMT</pubDate>
<guid>http://snipplr.com/view/62495/google-cdn-jquery-loading-fallback/</guid>
</item>
<item>
<title>(HTML) Faster page load hack - IE conditional comments</title>
<link>http://snipplr.com/view/62494/faster-page-load-hack--ie-conditional-comments/</link>
<description><![CDATA[ <p>This empty conditional comment hack is used to basically increase performance of a website. When conditional comments are used on a site, for example, for an IE6 conditional stylesheet, it will block further downloads until the css files are fully downloaded, hence increasing load time. To solve this issue, an empty conditional comment, like below, is used before any CSS is loaded in the document, and the problem will be solved!</p> ]]></description>
<pubDate>Thu, 12 Jan 2012 02:04:40 GMT</pubDate>
<guid>http://snipplr.com/view/62494/faster-page-load-hack--ie-conditional-comments/</guid>
</item>
<item>
<title>(HTML) Favicon and Apple Touch Icon</title>
<link>http://snipplr.com/view/62493/favicon-and-apple-touch-icon/</link>
<description><![CDATA[ <p>If you place favicon.ico and apple-touch-icon.png in the root of your website, these references are NOT required.</p> ]]></description>
<pubDate>Thu, 12 Jan 2012 02:01:25 GMT</pubDate>
<guid>http://snipplr.com/view/62493/favicon-and-apple-touch-icon/</guid>
</item>
<item>
<title>(CSS) Best Method for Clearing Floats</title>
<link>http://snipplr.com/view/62371/best-method-for-clearing-floats/</link>
<description><![CDATA[ <p>In my opinion, this is the best cross-browser method of clearing floated elements in a container. Remember to add .clear-fix{zoom:1;} to an IE specific stylesheet, otherwise IE 7 will complain.</p> ]]></description>
<pubDate>Sat, 07 Jan 2012 00:59:43 GMT</pubDate>
<guid>http://snipplr.com/view/62371/best-method-for-clearing-floats/</guid>
</item>
<item>
<title>(PHP) Clean up WordPress wp_head()</title>
<link>http://snipplr.com/view/60128/clean-up-wordpress-wphead/</link>
<description><![CDATA[ <p>Remove unnecessary code from the default WordPress header.</p> ]]></description>
<pubDate>Mon, 24 Oct 2011 22:01:10 GMT</pubDate>
<guid>http://snipplr.com/view/60128/clean-up-wordpress-wphead/</guid>
</item>
<item>
<title>(jQuery) Latest Minified jQuery from Google CDN</title>
<link>http://snipplr.com/view/59660/latest-minified-jquery-from-google-cdn/</link>
<description><![CDATA[ <p>To get the most recent version in the 1.x.x family.</p> ]]></description>
<pubDate>Wed, 12 Oct 2011 08:07:57 GMT</pubDate>
<guid>http://snipplr.com/view/59660/latest-minified-jquery-from-google-cdn/</guid>
</item>
<item>
<title>(PHP) Get WordPress theme menu name in slug format from location parameter</title>
<link>http://snipplr.com/view/58556/get-wordpress-theme-menu-name-in-slug-format-from-location-parameter/</link>
<description><![CDATA[ <p>Example call: $menuName = sleek_get_theme_menu_name('footer-menu')</p> ]]></description>
<pubDate>Fri, 09 Sep 2011 20:03:44 GMT</pubDate>
<guid>http://snipplr.com/view/58556/get-wordpress-theme-menu-name-in-slug-format-from-location-parameter/</guid>
</item>
<item>
<title>(PHP) Register any number of WordPress Custom Menu Locations</title>
<link>http://snipplr.com/view/58552/register-any-number-of-wordpress-custom-menu-locations/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 09 Sep 2011 19:45:08 GMT</pubDate>
<guid>http://snipplr.com/view/58552/register-any-number-of-wordpress-custom-menu-locations/</guid>
</item>
<item>
<title>(PHP) WordPress Custom Walker Class to get Sister Pages for Sub-Menu</title>
<link>http://snipplr.com/view/58550/wordpress-custom-walker-class-to-get-sister-pages-for-submenu/</link>
<description><![CDATA[ <p>No modifications or testing carried out yet.</p> ]]></description>
<pubDate>Fri, 09 Sep 2011 19:12:59 GMT</pubDate>
<guid>http://snipplr.com/view/58550/wordpress-custom-walker-class-to-get-sister-pages-for-submenu/</guid>
</item>
<item>
<title>(PHP) WordPress Custom Walker Class to remove unnecessary classes and ID\'s from menu items</title>
<link>http://snipplr.com/view/58549/wordpress-custom-walker-class-to-remove-unnecessary-classes-and-ids-from-menu-items/</link>
<description><![CDATA[ <p>Could possibly be simplified to maximise efficiency. It relies on a separare WP Sleek framework function sleek_get_theme_menu_name. This could ideally be improved to allow the theme location to passed as a parameter somehow.</p> ]]></description>
<pubDate>Fri, 09 Sep 2011 19:05:59 GMT</pubDate>
<guid>http://snipplr.com/view/58549/wordpress-custom-walker-class-to-remove-unnecessary-classes-and-ids-from-menu-items/</guid>
</item>
<item>
<title>(PHP) Allow HTML in WordPress User Biographical Info</title>
<link>http://snipplr.com/view/58186/allow-html-in-wordpress-user-biographical-info/</link>
<description><![CDATA[ <p>Add code to theme functions.php file.</p> ]]></description>
<pubDate>Fri, 26 Aug 2011 06:22:01 GMT</pubDate>
<guid>http://snipplr.com/view/58186/allow-html-in-wordpress-user-biographical-info/</guid>
</item>
<item>
<title>(CSS) Pure CSS3 Buttons</title>
<link>http://snipplr.com/view/57704/pure-css3-buttons/</link>
<description><![CDATA[ <p>Pure CSS3 buttons with 9 pre-defined colours and 3 styles.
Adapted from Web Designer Wall - http://www.webdesignerwall.com/demo/css-buttons.html</p> ]]></description>
<pubDate>Wed, 10 Aug 2011 00:09:15 GMT</pubDate>
<guid>http://snipplr.com/view/57704/pure-css3-buttons/</guid>
</item>
<item>
<title>(Apache) Setting PHP Memory Limit in .htaccess</title>
<link>http://snipplr.com/view/57652/setting-php-memory-limit-in-htaccess/</link>
<description><![CDATA[ <p>Useful for WordPress installations that need more than 32M of memory</p> ]]></description>
<pubDate>Sat, 06 Aug 2011 00:09:55 GMT</pubDate>
<guid>http://snipplr.com/view/57652/setting-php-memory-limit-in-htaccess/</guid>
</item>
<item>
<title>(jQuery) jQuery rel=\"external\" to open links in new window</title>
<link>http://snipplr.com/view/57571/jquery-relexternal-to-open-links-in-new-window/</link>
<description><![CDATA[ <p>Add attribute to links to open them in a new window. Example - rel="external". Alternative to target="_blank", conforming to XHTML specification.</p> ]]></description>
<pubDate>Wed, 03 Aug 2011 19:14:05 GMT</pubDate>
<guid>http://snipplr.com/view/57571/jquery-relexternal-to-open-links-in-new-window/</guid>
</item>
<item>
<title>(HTML) Latest Minified jQuery</title>
<link>http://snipplr.com/view/57482/latest-minified-jquery/</link>
<description><![CDATA[ <p>Permanent link to latest minified jQuery release at jQuery.com</p> ]]></description>
<pubDate>Mon, 01 Aug 2011 21:58:48 GMT</pubDate>
<guid>http://snipplr.com/view/57482/latest-minified-jquery/</guid>
</item>
<item>
<title>(CSS) HTML 5 Reset CSS</title>
<link>http://snipplr.com/view/57476/html-5-reset-css/</link>
<description><![CDATA[ <p>Trimmed and personalised version of Eric Meyer's Reset CSS.</p> ]]></description>
<pubDate>Mon, 01 Aug 2011 19:54:40 GMT</pubDate>
<guid>http://snipplr.com/view/57476/html-5-reset-css/</guid>
</item>
</channel>
</rss>