Sure. it's an object. add this after that code and check out the result in Firebug or Safari's console:
console.log(arrayob);
What exactly do you want to do with the object after you've created and populated it?
--Karl
On Sep 30, 2009, at 9:35 AM, runrunforest wrote:
I try your code, the result is: [object Object]
On Sep 30, 8:05 pm, Karl Swedberg <k...@englishrules.com> wrote:On Sep 30, 2009, at 1:00 AM, Poloman wrote:Can I get value and text of an option and put them into an arrayobject?<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 Swedbergwww.englishrules.comwww.learningjquery.com
No comments:
Post a Comment