Skip to content

Instantly share code, notes, and snippets.

@web-zen
Created August 30, 2009 19:01
Show Gist options
  • Select an option

  • Save web-zen/178081 to your computer and use it in GitHub Desktop.

Select an option

Save web-zen/178081 to your computer and use it in GitHub Desktop.
var bla is an object with array
12 Baker
14 Jones
........
how to make it the format at the bottom?
var userz = YAHOO.lang.JSON.stringify(bla,["value","label"]);
alert(userz);
------------------------------------------------------------------------------
var users = [
{value:'12',label:'Baker'},
{value:'14',label:'Jones'},
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment