vote up 0 vote down star

In ASP C#, you can create a select (ListBox) then populate it with items (ListItem): ListBox1.Items.Add( new ListItem("Display name", "value")); This has an Add method that takes a ListItem option object.

Is there something similar in JQuery where you can add JavaScript objects to JQuery selected DOM objects without using ad hoc html text?

Dumb question but I wanted to make sure I wasn't completely missing something to add JavaScript variables that are DOM elements to JQuery selected items.

flag

'add JavaScript variables that are DOM elements'. What do you mean by this? Do you want to add DOM elements like div to a select box? – adamantium Sep 29 at 5:07
The question is not so clear. – adamantium Sep 29 at 5:26

1 Answer

vote up 2 vote down check
var opt = document.createElement('option');
opt.appendChild(document.createTextNode('test'));
$('select').append(opt);

Works for me (I tested in IE 6, Firefox 3 and Safari 4).

link|flag
Now that is fantastic! – Dr. Zim Sep 29 at 5:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.