function FillFeedCharges()
{
var link;
var idModel = $("#sGroup_cd").val();
if (idModel != "") {
$.getJSON("@Url.Content("~/GroupMast/List")", { sGroup_cd: idModel, sCompany_cd :"01"},
function (data) {
var header = '
$('#users table').append(header);
$.each(data, function (key, val) {
var user = '
$('#users table').append(user);
});
});
when i Called 'CallEditDetail' function in $(document).ready(function () it is not callled and give error as 'CallEditDetail not declared' and if i called from outside the $(document).ready(function () it is called. Please help me
Replies
Know the answer? Post it — somebody with the same question will find it here.