<script src="~/Scripts/jquery-1.10.2.min.js"></script>
$(document).ready(function () {
//Call EmpDetails jsonResult Method
$.getJSON("Home/EmpDetails",
//Append each row to html table
for (var i = 0; i < json.length; i++) {
tr.append("<td>" + json[i].Id + "</td>");
tr.append("<td>" + json[i].Name + "</td>");
tr.append("<td>" + json[i].City + "</td>");
tr.append("<td>" + json[i].Address + "</td>");
<table class="table table-bordered table-condensed table-hover table-striped">