Skip to content

Instantly share code, notes, and snippets.

@sukima
Forked from anonymous/gist:1067456
Created July 6, 2011 15:10
Show Gist options
  • Save sukima/1067468 to your computer and use it in GitHub Desktop.
Save sukima/1067468 to your computer and use it in GitHub Desktop.
$.each(arrayFromPHP, function (i, elem) {
console.log(elem.User);
console.log(elem.EmailAddress);
$("<option/>").clone()
.val(elem.Emailaddresses)
.text(elem.User)
.appendTo("#emailaddresses");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment