I want to bind a JSON object to a HTML element.
e.g.
I have a object \"person\" with the attributes \"firstName\", \"lastName\"
Simple one-way approach using jquery...
var resp = your_json_data; $(function () { $(".jsondata").each(function () { $(this).html(eval($(this).attr("data"))); }); });
then in the page...