Check the Select Box Manipulation project page at the jQuery site for the latest download.
<code>
void csharp {}
<?php echo ?>
SELECT code FROM SQL
<asp:net runat="server" />
function javascript() {}
$(jquery)
</code>
<tools>
<freeware /><opensource />
</tools>
Check the Select Box Manipulation project page at the jQuery site for the latest download.

This work is licenced under a Creative Commons Licence.
1 comments:
hi, Im JC i added this to ..
/**
* Returns text which have been selected
*
* @name selectedValues
* @author Sam Collett, modify by Juan Carlos Dominguez
* @type Array
* @example $("#myselect").selectedText();
*
*/
$.fn.selectedText = function()
{
var v = [];
this.find("option:selected").each(
function()
{
v[v.length] = this.text;
}
);
return v;
};
you will get all selected options into array.
Post a Comment