<?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/tags/select</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Wed, 19 Jun 2013 19:39:38 GMT</pubDate>
<item>
<title>(PL/SQL) Selecting a Random Row from Table in MySQL - apphp-snippets</title>
<link>http://snipplr.com/view/70369/selecting-a-random-row-from-table-in-mysql/</link>
<description><![CDATA[ <p>Here the simplest way of selecting random rows from the MySQL database with using "ORDER BY RAND()" clause in the query.</p> ]]></description>
<pubDate>Tue, 12 Mar 2013 22:09:43 GMT</pubDate>
<guid>http://snipplr.com/view/70369/selecting-a-random-row-from-table-in-mysql/</guid>
</item>
<item>
<title>(CSS) Styling select options - COBOLdinosaur</title>
<link>http://snipplr.com/view/69895/styling-select-options/</link>
<description><![CDATA[ <p>In modern browsers select options can now be style using most css properties. Of course, IE is still behind but it does support some styling as well.  There are a lot more options on the site.</p> ]]></description>
<pubDate>Tue, 12 Feb 2013 07:58:57 GMT</pubDate>
<guid>http://snipplr.com/view/69895/styling-select-options/</guid>
</item>
<item>
<title>(JavaScript) Remove selected items from select box - j100</title>
<link>http://snipplr.com/view/69713/remove-selected-items-from-select-box/</link>
<description><![CDATA[ <p>This will remove the items in a select box/list box that have been selected.</p> ]]></description>
<pubDate>Thu, 31 Jan 2013 11:03:36 GMT</pubDate>
<guid>http://snipplr.com/view/69713/remove-selected-items-from-select-box/</guid>
</item>
<item>
<title>(MySQL) Remap values inside a MYSQL query using CASE...WHEN syntax - ginoplusio</title>
<link>http://snipplr.com/view/67831/remap-values-inside-a-mysql-query-using-casewhen-syntax/</link>
<description><![CDATA[ <p>How to remap a value to another inside a mysql query select.</p> ]]></description>
<pubDate>Sat, 20 Oct 2012 08:14:57 GMT</pubDate>
<guid>http://snipplr.com/view/67831/remap-values-inside-a-mysql-query-using-casewhen-syntax/</guid>
</item>
<item>
<title>(jQuery) Set Default Value for Select (dropdown) Lists Using value attribute - halk</title>
<link>http://snipplr.com/view/67752/set-default-value-for-select-dropdown-lists-using-value-attribute/</link>
<description><![CDATA[ <p>For some reason setting a default value for select elements does not work. This one line of jquery solves that problem.  Assign a value (value="something") to the select tag that is to be the default value.  With jquery get all select elements with a (value) attribute set.  For some reason I couldnt get the value of (value) with jquery, it would only return the first item in the list and not the value of the attribute(value). Oldschool Javascript managed to return it though.  The result is that when the document becomes ready jquery finds all select boxes and changes their value to the value stored in the attribute(value) of the select tag.  This means that you can set default values for select elements in the same way you set them for other elements - by assigning them a (value)  -  value="whatever"</p> ]]></description>
<pubDate>Tue, 16 Oct 2012 01:33:32 GMT</pubDate>
<guid>http://snipplr.com/view/67752/set-default-value-for-select-dropdown-lists-using-value-attribute/</guid>
</item>
<item>
<title>(Maxscript) SELECT INTERSEPTIONS OBJECTS - barigazy</title>
<link>http://snipplr.com/view/66175/select-interseptions-objects/</link>
<description><![CDATA[ <p>select all object that intersect each other</p> ]]></description>
<pubDate>Tue, 17 Jul 2012 04:35:17 GMT</pubDate>
<guid>http://snipplr.com/view/66175/select-interseptions-objects/</guid>
</item>
<item>
<title>(Maxscript) Select Last Created Object - barigazy</title>
<link>http://snipplr.com/view/66170/select-last-created-object/</link>
<description><![CDATA[ <p>Select last created object using "getNodeByHandle" fn</p> ]]></description>
<pubDate>Tue, 17 Jul 2012 03:49:10 GMT</pubDate>
<guid>http://snipplr.com/view/66170/select-last-created-object/</guid>
</item>
<item>
<title>(HTML) Select - Tipos de Via - tomascayuelas</title>
<link>http://snipplr.com/view/65867/select--tipos-de-via/</link>
<description><![CDATA[ <p>Select con options de tipos de vía.</p> ]]></description>
<pubDate>Fri, 29 Jun 2012 19:15:53 GMT</pubDate>
<guid>http://snipplr.com/view/65867/select--tipos-de-via/</guid>
</item>
<item>
<title>(MySQL) MySQL Select duplicates - TheNullByte</title>
<link>http://snipplr.com/view/65582/mysql-select-duplicates/</link>
<description><![CDATA[ <p>Instead of the standard return of duplicates, this will actually show the rows that are duplicated, making it easier to see the data</p> ]]></description>
<pubDate>Wed, 13 Jun 2012 03:02:48 GMT</pubDate>
<guid>http://snipplr.com/view/65582/mysql-select-duplicates/</guid>
</item>
<item>
<title>(jQuery) Speed up jQuery UI Autocomplete Combobox with very large select lists - Huskie</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) custom jquery selectbox dropdown - rumremix</title>
<link>http://snipplr.com/view/64524/custom-jquery-selectbox-dropdown/</link>
<description><![CDATA[ <p>Simple solution found via link. Just edit code from demo page(s). Also http://uniformjs.com/</p> ]]></description>
<pubDate>Thu, 12 Apr 2012 09:25:51 GMT</pubDate>
<guid>http://snipplr.com/view/64524/custom-jquery-selectbox-dropdown/</guid>
</item>
<item>
<title>(jQuery) validar limite de elementos seleccionados en select multiple - rickyslow</title>
<link>http://snipplr.com/view/64043/validar-limite-de-elementos-seleccionados-en-select-multiple/</link>
<description><![CDATA[ <p>validar limite de elementos seleccionados en select multiple</p> ]]></description>
<pubDate>Tue, 20 Mar 2012 06:56:44 GMT</pubDate>
<guid>http://snipplr.com/view/64043/validar-limite-de-elementos-seleccionados-en-select-multiple/</guid>
</item>
<item>
<title>(jQuery) PHP/ Jquery Dropdown Select - LadyLoomis</title>
<link>http://snipplr.com/view/63485/php-jquery-dropdown-select/</link>
<description><![CDATA[ <p>Set a variable by getting the URLs id with PHP.  Find the the option with the name value that is equal with the variable and add "selected" to it.</p> ]]></description>
<pubDate>Wed, 22 Feb 2012 04:24:55 GMT</pubDate>
<guid>http://snipplr.com/view/63485/php-jquery-dropdown-select/</guid>
</item>
<item>
<title>(CSS) Styled Select Menus - crypticsoft</title>
<link>http://snipplr.com/view/62659/styled-select-menus/</link>
<description><![CDATA[ <p>For those times when you just need a quickly styled select menu with css.</p> ]]></description>
<pubDate>Fri, 20 Jan 2012 05:25:04 GMT</pubDate>
<guid>http://snipplr.com/view/62659/styled-select-menus/</guid>
</item>
<item>
<title>(PHP) Setting a select's selected value - dato</title>
<link>http://snipplr.com/view/61866/setting-a-selects-selected-value/</link>
<description><![CDATA[ <p>dynamically selects a value in a select according to what's already in the DB</p> ]]></description>
<pubDate>Wed, 14 Dec 2011 04:09:44 GMT</pubDate>
<guid>http://snipplr.com/view/61866/setting-a-selects-selected-value/</guid>
</item>
<item>
<title>(jQuery) Fill select list with text value pairs - Neven</title>
<link>http://snipplr.com/view/61825/fill-select-list-with-text-value-pairs/</link>
<description><![CDATA[ <p>This snippet describes how to fill select html element with Text, Value pairs
where 'Text' is displayed to the user and 'Value' is actual value to be processed.</p> ]]></description>
<pubDate>Mon, 12 Dec 2011 21:37:18 GMT</pubDate>
<guid>http://snipplr.com/view/61825/fill-select-list-with-text-value-pairs/</guid>
</item>
<item>
<title>(jQuery) Metodo Change en jQuery - serialk89</title>
<link>http://snipplr.com/view/57779/metodo-change-en-jquery/</link>
<description><![CDATA[ <p>Select dinamico para el cambio de</p> ]]></description>
<pubDate>Fri, 12 Aug 2011 08:32:53 GMT</pubDate>
<guid>http://snipplr.com/view/57779/metodo-change-en-jquery/</guid>
</item>
<item>
<title>(HTML) HTML Select Option Template for Country Names - mantosz</title>
<link>http://snipplr.com/view/57463/html-select-option-template-for-country-names/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Mon, 01 Aug 2011 17:08:24 GMT</pubDate>
<guid>http://snipplr.com/view/57463/html-select-option-template-for-country-names/</guid>
</item>
<item>
<title>(HTML) Select Option Template for Indonesian States - mantosz</title>
<link>http://snipplr.com/view/57461/select-option-template-for-indonesian-states/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Mon, 01 Aug 2011 17:06:21 GMT</pubDate>
<guid>http://snipplr.com/view/57461/select-option-template-for-indonesian-states/</guid>
</item>
<item>
<title>(PHP) Make your table color different by Mysql Select tag - Darksider3</title>
<link>http://snipplr.com/view/57135/make-your-table-color-different-by-mysql-select-tag/</link>
<description><![CDATA[ <p>Here you see a example to make your table background color fdifferent at last</p> ]]></description>
<pubDate>Tue, 26 Jul 2011 02:21:32 GMT</pubDate>
<guid>http://snipplr.com/view/57135/make-your-table-color-different-by-mysql-select-tag/</guid>
</item>
</channel>
</rss>