I have the following JSON schema
{
"employee":
{"display_name":"EMPLOYEE NAME:",
"format":"string",
"type":"textbox",
"dflt":"null",
"isMandatory":"true"}
}
Now I have to generate an html tag i.e
<input type="text" value="name"></input>
How do I use the JSON with jQuery? I know I have to use append method. But I'm not sure how to append JSON elements.
Thanks