How To Select A jQuery UI Tab From A Link Anchor

Author: , May 11th, 2011

The HTML:

The jQuery:

How To Select All Options In A Select Menu Using jQuery

Author: , May 2nd, 2011

How To Get The Current Value And Option Text Of A Select Using jQuery

Author: , April 18th, 2011

How To Get a Count of Distinct Items in SQL

Author: , August 3rd, 2010

[code]SELECT city, sum(is_special) as special_count FROM stores where state="$state" group by city[/code]

Examples of onChange and the Select Statement

Author: , September 29th, 2009

Some examples of how to access the option values and text in an HTML SELECT via javascript: onchange=”groupsFilter(this.options[this.selectedIndex].value); return false;” onChange=”if (this.options[this.selectedIndex].value != ”) submit()” Take the option text currently highlighted and use it to populate another location in the web page: replaceSpan(‘unit1’,this.options[this.selectedIndex].text);