I was wondering if there was a quick way to extract keys of associative array into an array, or comma-separated list using JavaScript (jQuery is ok).
options
options = {key1: "value1", key2: "value2"}; keys = Object.keys(options);