var jsonObj = {
'firstName' : 'Krijn',
'lastName' : 'Hoetmer',
'website' : {
'uri' : 'http://krijnhoetmer.nl/',
'stuff' : {
'CSS' : 'Cascading Style Sheets',
'HTML' : 'HyperText Markup Language',
'JS' : 'JavaScript'
},
'testAlert' : function() {
alert(this.firstName + ' ' + this.lastName);
}
},
'myAgeAtTheMomentOfWritingThis' : 20,
'testAlert' : function() {
alert(this.firstName + ' ' + this.lastName);
}
};
.. onclick="jsonObj.testAlert();"..
.. onclick="jsonObj.website.testAlert();"..
(Watch out with the this
keyword.)