Tengo un objetocómo acceder a la propiedad objeto utilizando la variable
var Messages = {
'fullName' : 'Tell us your cool name dude..! e.g. Yousuf Iqbal',
'userName' : 'Choose a catchy username. Remember! It should be available :)',
'password' : 'Choose a top secret password with special chars, numbers and alphabets',
'rePassword' : 'Retype the password you just typed. But, don\'t try to copy!',
'bYear' : 'Tell the year, in which this bomb blasted'
};
y una variable ..
var attribute = $('#userinfo form input').attr('name');
ahora quiero seleccione Mensajes objeto establecimiento a través de esta variable como esta ..
var message = Messages.attribute;
pero no funciona ... y también han intentado lo siguiente ..
var message = Messages+'.'+attribute;
................. ........... :) –