$('#addstflgnlink').live('click', function (e) {
e.preventDefault();
$.ajax({
url: this.href,
type: "get",
success: function (fk) {
$('#stflgn').append(fk);
alert(fk);
// alert($('#tmpcount').val());
},
error: function () {
alert("error");
}
});
});
here fk is partial view returned by ajax call. I want to grab #tmpcount in partial view fk. how can I do it in jquery.
1 Answer