success : function(response) {
//$(response).find('.ajaxUpdater').each(function() {
$(response).children('.ajaxUpdater').each(function() {
var id = "#" + $(this).attr("id");
var value = $(this).val();
var html = $(this).html();
$(id).val( value );
$(id).html( html );
})
}
|