";
callBack(table);
}
});
}
dom = dom || event.target;
if (dom.tagName != "TD")
return;
var thisObj = $(dom);
var obj = getDvRest(dom, id);
if (obj.length > 0)
obj.show();
else getTtml(id, function (str) { thisObj.append(str); });
}
function hiddenScoreDetail(id, dom) {
dom = dom || event.target;
getDvRest(dom, id).hide();
}
function getDvRest(element, id) {
if (element.tagName == "TD")
return $(element).find(".showScore");
else return $(element).parent().find(".showScore");
}
});
function showSclassDiv(ifShow) {
if (ifShow == false)
return $("#sclassDiv").hide();
else return $("#sclassDiv").show().css("display", "inline-block");
}