I'm working on mvc5 I want to bind data to div using .html(data)
.done(function (data) {
var result = $.parseJSON(data);
$("mydata").html(result);
});
<div id="mydata"></div>
Object data has values like following.

How do I bind values into $("mydata")?
I tried like above but it does not work.