I have a json object like
var data = [
{
"parent": "Home",
"child": [
]
},
{"parent": "Services",
"child": [
{"title":"Infrastruture"},
{"title":"Development"}
]
},
{
"parent": "Sector",
"child": [
{"title":"Recruitment Consultant"},
{"title":"Change Management"},
{"title":"Industrial Relations"}
]
},
]
I want to make a horizontal menu with respect to this json. I am new json object.So how can i do this?