How would I get the key name for the follow? E.g I want "button1" and "button2"?
var buttons = {
    button1: {
        text: 'Close',
        onclick: function(){
        }
    },
    button2: {
        text: 'Close2',
        onclick: function(){
        }
    }
}
var i;
for(i in buttons){
    if(buttons.hasOwnProperty(i)){
        alert(buttons[i].text);
    }
} 
I tried using .push() although this didn't work. 








button1,button2and so on, you might want to makebuttonsan array