Wednesday, September 30, 2009

[jQuery] Re: array object

On Sep 30, 2009, at 1:00 AM, Poloman wrote:


Can I get value and text of an option and put them into an array
object?

   <select>
       <option value="c1">britney</option>
       <option value="c2">jackson</option>
   </select>

I'd like to have something like this  arrayob = {c1:"britner",
c2:"jackson"};


You could do something like this ...

var arrayob = {};
$('option').each(function() {
  arrayob[this.value] = $(this).text();
});




--Karl

____________
Karl Swedberg



No comments: