I have the following json object i need to alert it through javascript.
{data:[{\"empmenuid\":\"1\",\"empid\":null,\"deptid\":\"66\",\"aliasid\"
You can access a JSON objects properties using the dot operator:
dot
var person { "name":"test", "age":20 } //document.write(person.name); alert(person.name);