I have the next code in javascript. I deleted some unnecessary items because it went to long.
var options = {
    dhcode: true,
    commands: {
        bold: {
            enabled: true,
            view: true,
            exec: true,
            cmd: 'bold',
            param: null
        },
        italic: {
            enabled: true,
            view: true,
            exec: true,
            cmd: 'italic',
            param: null
        },
        underline: {
            enabled: true,
            view: true,
            exec: true,
            cmd: 'underline',
            param: null
        }
    }
}
Now i want to get al data in the options.commands object. But everything what i try don't work. This is what i am trying:
for(var i=0;i<options.commands.length;i++) {
alert(options.commands[i].cmd);
}
Please help me.
 
     
     
     
     
    